-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
feat:Downloading mined bitext #24
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: Shruti Bhosale <[email protected]> Co-authored-by: Anna Sun <[email protected]> Co-authored-by: Maha Elbayad <[email protected]> Co-authored-by: Jean Maillard <[email protected]> Co-authored-by: James Cross <[email protected]> Co-authored-by: Onur Çelebi <[email protected]> Co-authored-by: Kevin Heffernan <[email protected]> Co-authored-by: Kaushik Ram Sadagopan <[email protected]> Co-authored-by: Angela Fan <[email protected]>
[nllb] remove unused train cluster.data_dir, update fairscale INSTALL instructions
Fix the link to the flores-200 readme in the "Evaluation and Generation" section
* fix Santali language code: sat_Beng -> sat_Olck * Olck typo
Co-authored-by: Maha Elbayad <[email protected]> Co-authored-by: Maha Elbayad <[email protected]>
…#4965) Co-authored-by: Daniel Licht <[email protected]>
Add Apex pre-install instructions
fixed: type hinting issue in download_parallel_corpora.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Partially closes #11 (analysis needs to be added)
Allows downloading lang pairs from allenai nllb dataset (huggingface dataset): https://huggingface.co/datasets/allenai/nllb/tree/main
I've stored the
NLLB_PAIRS
(pairs released with NLLB paper) andCCMATRIX_PAIRS
(pairs for which NLLB paper reused previous CCMatrix dataset) in a separate python file to import these variables into the main script because these two are rather big and could impair code readability.Resulting tree structure with flag
--minimal
(debug mode) enabled:downloads/nllb/
├── ace_Latn-ban_Latn
│ ├── allenai.nllb.ace_Latn
│ └── allenai.nllb.ban_Latn
└── amh_Ethi-nus_Latn
├── allenai.nllb.amh_Ethi
└── allenai.nllb.nus_Latn
I'm planning on doing analysis as the next steps to this PR.