Skip to content

Commit

Permalink
Change delimiter from period to underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
ljvmiranda921 committed Nov 17, 2023
1 parent d5bef23 commit 9317dea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seacrowd/sea_datasets/tatoeba/tatoeba.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class TatoebaDataset(datasets.GeneratorBasedBuilder):

SEACROWD_SCHEMA_NAME = "t2t"

dataset_names = sorted([f"tatoeba.{lang}" for lang in _LANGUAGES])
dataset_names = sorted([f"tatoeba_{lang}" for lang in _LANGUAGES])
BUILDER_CONFIGS = []
for name in dataset_names:
source_config = SEACrowdConfig(
Expand Down

0 comments on commit 9317dea

Please sign in to comment.