Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
Indonesian
Size:
100M - 1B
ArXiv:
License:
| language: | |
| - id | |
| license: other | |
| task_categories: | |
| - text-generation | |
| arxiv: 2512.18834 | |
| configs: | |
| - config_name: minhash_deduped | |
| data_files: | |
| - split: train | |
| path: minhash_deduped/**/*.parquet | |
| - config_name: quality_filtered | |
| data_files: | |
| - split: train | |
| path: quality_filtered/**/*.parquet | |
| - config_name: matched | |
| data_files: | |
| - split: train | |
| path: consensus/*.parquet | |
| default: minhash_deduped | |
| <p align="center"> | |
| <a href="https://huggingface.co/collections/AdaMLLab/mixminmatch"> | |
| <img src="https://img.shields.io/badge/🤗_Collection-MixMinMatch-blue" alt="MixMinMatch Collection"> | |
| </a> | |
| </p> | |
| IndMix ([https://arxiv.org/abs/2512.18834](https://arxiv.org/abs/2512.18834)) is an Indonesian pretraining corpus built by combining six publicly available Indonesian datasets, applying Indonesian-specific quality filtering, and performing cross-dataset deduplication. | |
| ## Subsets | |
| | Subset | Description | | |
| |--------|-------------| | |
| | `quality_filtered` | Quality-filtered data before deduplication | | |
| | `minhash_deduped` | Document-level MinHash deduplication | | |
| | `matched` | Documents appearing in 2+ source datasets | | |
| The matched subset uses cross-dataset agreement as a signal for quality. | |
| ## Usage | |
| ```python | |
| from datasets import load_dataset | |
| ds = load_dataset("AdaMLLab/IndMix", "minhash_deduped") | |
| ds = load_dataset("AdaMLLab/IndMix", "quality_filtered") | |
| ds = load_dataset("AdaMLLab/IndMix", "matched") | |
| ``` | |
| ## Sources | |
| - FineWeb-2 (`HuggingFaceFW/fineweb-2`, `ind_Latn`) | |
| - HPLT 2.0 (`HPLT/HPLT2.0_cleaned`, `ind_Latn`) | |
| - CulturaX (`uonlp/CulturaX`, `id`) | |
| - C4 (`allenai/c4`, `id`) | |
| - FinePDFs (`HuggingFaceFW/finepdfs`, `ind_Latn`) | |
| - SEA-LION Pile v2 (`aisingapore/SEA-PILE-v2`, `id`) | |
| ## Pipeline | |
| 1. Quality filtering with Indonesian-specific thresholds (Latin script ratio, repetition patterns, line quality) | |
| 2. Document-level MinHash deduplication (5-gram shingles, 14 bands, 8 hashes per band, similarity threshold 0.8) | |
| 3. Cross-source matching to identify documents appearing in 2+ independent sources | |
| ## Citation | |
| ```bib | |
| @misc{alrashed2025mixminmatch, | |
| title={Mix, MinHash, and Match: Cross-Source Agreement for Multilingual Pretraining Datasets}, | |
| author={Sultan Alrashed and Francesco Orabona}, | |
| year={2025}, | |
| eprint={2512.18834v2}, | |
| archivePrefix={arXiv}, | |
| primaryClass={cs.CL}, | |
| url={https://arxiv.org/abs/2512.18834v2}, | |
| } | |
| ``` | |
| ## License | |
| See individual source dataset licenses. | |