| | --- |
| | license: mit |
| | --- |
| | |
| | This is a re-hosted version of the open-source **RORD dataset**, made available on Hugging Face for easier and faster download. |
| | Original authorship and dataset structure belong to the original creators (see source below). |
| |
|
| | --- |
| |
|
| | ## 🔗 Original Dataset Source |
| |
|
| | - **Original Repository**: [https://github.com/Forty-lock/RORD](https://github.com/Forty-lock/RORD) |
| | - **Original Authors**: Maintainers of the above repo |
| | - **Rehosted by**: [@datnvt](https://github.com/nguyenvanthanhdat) (mirror only) |
| |
|
| | > ⚠️ This Hugging Face mirror was created for convenience. All credit belongs to the original authors. |
| |
|
| | The dataset offers two download options: **7z (recommended)** and **zip (standard)** split archives. Choose **one method** and follow the instructions below. |
| | ## 7zip (Recommended) |
| |
|
| | ### Downloading in Parts |
| |
|
| | ```bash |
| | mkdir -p RORD_7z && cd RORD_7z |
| | |
| | # Download .7z.001 to .7z.040 |
| | for i in $(seq -w 1 40); do |
| | wget https://huggingface.co/datasets/presencesw/RORD/resolve/main/7z/RORD.7z.${i} |
| | done |
| | ``` |
| |
|
| | ### Unzipping |
| |
|
| | ```bash |
| | 7z x RORD.7z.001 |
| | ``` |
| |
|
| | ## Unzip |
| |
|
| | ### Downloading in Parts |
| |
|
| | ```bash |
| | mkdir -p RORD_zip && cd RORD_zip |
| | |
| | # Download .z01 to .z39 |
| | for i in $(seq -w 1 39); do |
| | wget https://huggingface.co/datasets/presencesw/RORD/resolve/main/zip/RORD.z${i} |
| | done |
| | |
| | # Download final .zip part |
| | wget https://huggingface.co/datasets/presencesw/RORD/resolve/main/zip/RORD.zip |
| | ``` |
| |
|
| | ### Unzipping |
| | ```bash |
| | unzip RORD.zip |
| | ``` |