Datasets:
ArXiv:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- zh
|
| 5 |
+
- id
|
| 6 |
+
---
|
| 7 |
+
# Just-Go-Parallel (Parallel)
|
| 8 |
+
The data repository for the parallel data used in the following paper:
|
| 9 |
+
> **Just Go Parallel: Improving the Multilingual Capabilities of Large Language Models**
|
| 10 |
+
>
|
| 11 |
+
> [Muhammad Reza Qorib](https://mrqorib.github.io/), [Junyi Li](https://lijunyi.tech/), and [Hwee Tou Ng](https://www.comp.nus.edu.sg/~nght/)
|
| 12 |
+
>
|
| 13 |
+
> The 63rd Annual Meeting of the Association for Computational Linguistics (to appear)
|
| 14 |
+
|
| 15 |
+
- **Paper:** [arXiv](https://arxiv.org/abs/2506.13044)
|
| 16 |
+
- **Codebase:** [https://github.com/nusnlp/Just-Go-Parallel/](https://github.com/nusnlp/just-Go-Parallel/)
|
| 17 |
+
|
| 18 |
+
## Download
|
| 19 |
+
To download and extract the files, please run the following commands:
|
| 20 |
+
```
|
| 21 |
+
huggingface-cli download nusnlp/JGP-Parallel --repo-type dataset --local-dir JGP-Parallel
|
| 22 |
+
cd JGP-Parallel
|
| 23 |
+
for file in *.tar.gz; do tar xzvf "${file}" --strip-components 1 && rm "${file}"; done
|
| 24 |
+
cd ..
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
## All Datasets
|
| 28 |
+
| Experiment | Datasets |
|
| 29 |
+
| ---------- | --- |
|
| 30 |
+
| No-Parallel | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) |
|
| 31 |
+
| Multilingual | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Multilingual](https://huggingface.co/datasets/nusnlp/JGP-Multilingual) |
|
| 32 |
+
| Parallel Non-Adjacent | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel-Non-Adjacent](https://huggingface.co/datasets/nusnlp/JGP-Parallel-Non-Adjacent) |
|
| 33 |
+
| Parallel First, Parallel Distributed, Parallel Last (all) | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel](https://huggingface.co/datasets/nusnlp/JGP-Parallel) |
|
| 34 |
+
| Parallel Last (uni): EN→ID | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel-EN-ID](https://huggingface.co/datasets/nusnlp/JGP-Parallel-EN-ID) |
|
| 35 |
+
| Parallel Last (uni): ID→EN | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel-ID-EN](https://huggingface.co/datasets/nusnlp/JGP-Parallel-ID-EN) |
|
| 36 |
+
| Parallel Last (uni): EN→ZH | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel-EN-ZH](https://huggingface.co/datasets/nusnlp/JGP-Parallel-EN-ZH) |
|
| 37 |
+
| Parallel Last (uni): ZH→EN | [nusnlp/JGP-SlimPajama](https://huggingface.co/datasets/nusnlp/JGP-SlimPajama) + [nusnlp/JGP-Parallel-ZH-EN](https://huggingface.co/datasets/nusnlp/JGP-Parallel-ZH-EN) |
|