This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix valid data file location issue with Natural Questions dataset (#3438
) * Fix valid set issue with Natural Questions dataset Happened to run ``` parlai display_data -t natural_questions -dt valid:stream ``` and ran into an issue about how it couldn't find the files. Digging into the built script and the output directory at `~/ParlAI/data/NaturalQuestions/valid`, I noticed the files were being stored at `nq-dev-00.jsonl` rather than `nq-valid-00.jsonl` as expected by the agent. This does a quick fix to move the files over. Test Plan: Ran the build script, commenting out the steps to redownload + untar all the data. Verified that ``` parlai display_data -t natural_questions -dt valid:stream ``` was indeed successful. * remove print, lol * lint
- Loading branch information