Skip to content

Commit

Permalink
fix remote dataset config string
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicGrobol committed Apr 16, 2024
1 parent 395c523 commit 0326a4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def raw_text_path(test_data_dir: pathlib.Path) -> pathlib.Path:

@pytest.fixture(scope="session")
def remote_raw_text() -> str:
return "lgrobol/openminuscule:text:train"
return "lgrobol/openminuscule:default:train"

@pytest.fixture(scope="session")
def translation_dataset_path(test_data_dir: pathlib.Path) -> pathlib.Path:
Expand Down
2 changes: 1 addition & 1 deletion zeldarose/train_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def on_train_epoch_end(self, trainer: pl.Trainer, pl_module: TrainingModule):
help=(
"A raw corpus for validation."
" Either as a path or as a `handle:config:split` identifier for 🤗 hub."
" (handle can be a url), e.g. `lgrobol/openminuscule:text:train`"
" (handle can be a url), e.g. `lgrobol/openminuscule:default:train`"
),
)
@click.option("--verbose", is_flag=True, help="More detailed logs")
Expand Down

0 comments on commit 0326a4b

Please sign in to comment.