We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After downloading the dataset you mentioned, I found that there is no such directory or file as you wrote in your code
test_src = [line.strip() for line in open(join(dataset_dir, 'devtest-first100/{}.devtest.first100'.format(src_lang))).readlines()] test_tgt = [line.strip() for line in open(join(dataset_dir, 'devtest-first100/{}.devtest.first100'.format(tgt_lang))).readlines()] ...
If I run the test_flores101.py script directly it shows error saying that the directory is not found.
test_flores101.py
Only after I changed it to the code below did it run correctly:
test_src = [line.strip() for line in open(join(dataset_dir, 'devtest-first100/{}.devtest'.format(src_lang))).readlines()] test_tgt = [line.strip() for line in open(join(dataset_dir, 'devtest-first100/{}.devtest'.format(tgt_lang))).readlines()] ...
So it should be devtest-first100/{}.devtest rather than devtest-first100/{}.devtest.first100, right?
devtest-first100/{}.devtest
devtest-first100/{}.devtest.first100
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After downloading the dataset you mentioned, I found that there is no such directory or file as you wrote in your code
If I run the
test_flores101.py
script directly it shows error saying that the directory is not found.Only after I changed it to the code below did it run correctly:
So it should be
devtest-first100/{}.devtest
rather thandevtest-first100/{}.devtest.first100
, right?The text was updated successfully, but these errors were encountered: