Skip to content

Commit

Permalink
fix misnamed variable error
Browse files Browse the repository at this point in the history
  • Loading branch information
aaprasad committed Aug 30, 2024
1 parent f8fdcec commit 1680ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dreem/datasets/tracking_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def make_train_splits(self, splits: tuple[float]) -> None:
dataset_size = len(dataset_to_split)

val_inds, test_inds = train_test_split(
range(test_size),
range(dataset_size),
train_size=val_frac,
test_size=test_frac,
)
Expand Down

0 comments on commit 1680ab7

Please sign in to comment.