Skip to content

Commit

Permalink
dataset.name -> dataset.path
Browse files Browse the repository at this point in the history
  • Loading branch information
jettjaniak committed May 25, 2024
1 parent 16f8704 commit 517e577
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configs/stories/llama2/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"batch_ordering_seed": 1337,
"torch_seed": 42,
"dataset": {
"name": "delphi-suite/stories-tokenized"
"path": "delphi-suite/stories-tokenized"
},
"tokenizer": "delphi-suite/stories-tokenizer"
}
2 changes: 1 addition & 1 deletion configs/stories/mamba/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"batch_ordering_seed": 1337,
"torch_seed": 42,
"dataset": {
"name": "delphi-suite/stories-tokenized"
"path": "delphi-suite/stories-tokenized"
},
"tokenizer": "delphi-suite/stories-tokenizer"
}
2 changes: 1 addition & 1 deletion delphi/test_configs/debug.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"vocab_size": 4096
},
"dataset": {
"name": "delphi-suite/v0-tinystories-v2-clean-tokenized"
"path": "delphi-suite/stories-tokenized"
},
"out_repo": "",
"wandb": ""
Expand Down
2 changes: 1 addition & 1 deletion tests/train/config/test_config_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_build_config_from_files_and_overrides():
assert config.eval_iters == 5
# check base values
assert config.max_epochs == 2
assert config.dataset.path == "delphi-suite/v0-tinystories-v2-clean-tokenized"
assert config.dataset.path == "delphi-suite/stories-tokenized"


def test_unoptionalize():
Expand Down

0 comments on commit 517e577

Please sign in to comment.