Skip to content

Commit

Permalink
dataset config typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jettjaniak committed May 20, 2024
1 parent f395e6d commit 67df789
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/delphi/train/config/dataset_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ class DatasetConfig:
)
train_split: str = field(
default="train",
metadata={"help": "split of the train dataset to use for validation"},
metadata={"help": "split of the dataset to use for training"},
)
validation_split: str = field(
default="validation",
metadata={"help": "split of the validation dataset to use for validation"},
metadata={"help": "split of the dataset to use for validation"},
)

def _load(self, split) -> Dataset:
Expand Down

0 comments on commit 67df789

Please sign in to comment.