Datasets:
File size: 2,463 Bytes
65fc386 4b592b6 65fc386 c095ae3 f9ebc28 c095ae3 4b592b6 c095ae3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
---
language:
- id
- jv
- su
dataset_info:
features:
- name: text
dtype: string
- name: url
dtype: string
- name: score
dtype: float32
- name: source
dtype: string
splits:
- name: ace
num_bytes: 221111651
num_examples: 792594
- name: ban
num_bytes: 70299985
num_examples: 244545
- name: bjn
num_bytes: 80927139
num_examples: 296314
- name: ind
num_bytes: 2494248742
num_examples: 8098063
- name: jav
num_bytes: 296261404
num_examples: 1155142
- name: min
num_bytes: 20231649
num_examples: 113323
- name: sun
num_bytes: 254676532
num_examples: 894626
download_size: 1936122223
dataset_size: 3437757102
configs:
- config_name: default
data_files:
- split: ace
path: data/ace-*
- split: ban
path: data/ban-*
- split: bjn
path: data/bjn-*
- split: ind
path: data/ind-*
- split: jav
path: data/jav-*
- split: min
path: data/min-*
- split: sun
path: data/sun-*
---
# Dataset Card for [acul3/KoPI-NLLB - NearDup Subset]
## Dataset Summary
This dataset is a subset of the KoPI-NLLB, focusing only on near-duplicate entries across various Indonesian languages. It is provided in parquet format and includes multiple low-resource languages from Indonesia. The dataset features textual data with accompanying metadata (url, score, source), making it useful for natural language processing tasks such as translation, text similarity, and language modeling.
## Languages
The dataset contains entries for the following Indonesian languages:
- Acehnese (ace)
- Balinese (ban)
- Banjarese (bjn)
- Indonesian (ind)
- Javanese (jav)
- Minangkabau (min)
- Sundanese (sun)
## Features
Each dataset contains the following features:
text: The text content in the respective language.
url: The source URL where the text was extracted.
score: A score indicating the similarity to a reference dataset.
source: The originating source or dataset for the entry.
## Usage
This dataset can be loaded using the following code snippet:
```
from datasets import load_dataset
dataset = load_dataset("acul3/KoPI-NLLB", name = "ace") # or "ban", "bjn", "ind", "jav", "min", "sun"
```
## Citation
If you use this dataset, please cite the original KoPI-NLLB dataset and this subset. You can cite it as:
```
@inproceedings{acul3kopi2024,
title={KoPI-NLLB: NearDup Subset},
author={Acul3},
year={2024},
publisher={Hugging Face Datasets}
}
``` |