Skip to content

Commit

Permalink
Fix confidence values in valid_pose_dataset fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
lochhh committed Jan 24, 2024
1 parent 9d78987 commit a9f7ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def valid_pose_dataset(valid_tracks_array, request):
data_vars={
"pose_tracks": xr.DataArray(tracks_array, dims=dim_names),
"confidence": xr.DataArray(
tracks_array[..., 0],
np.ones(tracks_array.shape[:-1]),
dims=dim_names[:-1],
),
},
Expand Down

0 comments on commit a9f7ebb

Please sign in to comment.