Skip to content

Commit

Permalink
remove positional args
Browse files Browse the repository at this point in the history
  • Loading branch information
namsaraeva committed May 22, 2024
1 parent 1ebcc44 commit 29a8212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparcscore/ml/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def combine_datasets_balanced(list_of_datasets, class_labels, train_per_class, v
return train_dataset, val_dataset, test_dataset


def split_dataset_regression(list_of_datasets, train_size, test_size, val_size, fractions=None, seed=None):
def split_dataset_regression(list_of_datasets, train_size=None, test_size=None, val_size=None, fractions=None, seed=None):
"""
Split a dataset into train, test, and validation set.
Expand Down

0 comments on commit 29a8212

Please sign in to comment.