You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ValueError: Invalid dataset name: custom-corpus_/corpora/parallel/test/all. Use the following format: <importer>_<name> or <importer>_<augmentation>_<name>. This is because the regex checked doesn't allow for dashes. The correct regex is ^([\w-]*)_(aug[a-z\-]*)?_?(.+)$
(with these two fixes, the pipeline continues)
The text was updated successfully, but these errors were encountered:
The dataset importer introduced a couple months ago has two issues:
bash
, notpython
(then the errors are related to bash not recognizing "import" etc)ValueError: Invalid dataset name: custom-corpus_/corpora/parallel/test/all. Use the following format: <importer>_<name> or <importer>_<augmentation>_<name>.
This is because the regex checked doesn't allow for dashes. The correct regex is^([\w-]*)_(aug[a-z\-]*)?_?(.+)$
(with these two fixes, the pipeline continues)
The text was updated successfully, but these errors were encountered: