forked from EuroEval/EuroEval
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_mlqa_es.py
More file actions
73 lines (57 loc) · 2.36 KB
/
create_mlqa_es.py
File metadata and controls
73 lines (57 loc) · 2.36 KB
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
# /// script
# requires-python = ">=3.10,<4.0"
# dependencies = [
# "datasets==2.15.0",
# "huggingface-hub==0.24.0",
# "pandas==2.2.0",
# "requests==2.32.3",
# ]
# ///
"""Create the MLQA dataset and upload them to the HF Hub."""
import pandas as pd
from datasets.arrow_dataset import Dataset
from datasets.dataset_dict import DatasetDict
from datasets.load import load_dataset
from datasets.splits import Split
from huggingface_hub.hf_api import HfApi
def main() -> None:
"""Create the MLQA datasets and upload them to the HF Hub."""
dataset_id = "facebook/mlqa"
# Load the dataset
dataset = load_dataset(dataset_id, token=True, name="mlqa.es.es")
assert isinstance(dataset, DatasetDict)
# The dataset only has splits val (500 samples) and test (5253 samples)
# So we use the val split + 524 test samples for training
# Then split the remaining test set into validation
# (256 samples) and test (2048 samples)
val_df = dataset["validation"].to_pandas()
test_df = dataset["test"].to_pandas()
assert isinstance(val_df, pd.DataFrame)
assert isinstance(test_df, pd.DataFrame)
# Create training split from validation data and random sample of test data
train_test_sample = test_df.sample(n=524, random_state=42)
train_df = pd.concat([val_df, train_test_sample])
test_df = test_df.drop(train_test_sample.index.tolist())
# Create validation split from remaining test data
val_df = test_df.sample(n=256, random_state=42)
test_df = test_df.drop(val_df.index.tolist())
# Create test split with 2048 samples
test_df = test_df.sample(n=2024, random_state=42)
assert isinstance(val_df, pd.DataFrame)
assert isinstance(test_df, pd.DataFrame)
# Collect datasets in a dataset dictionary
dataset = DatasetDict(
{
"train": Dataset.from_pandas(train_df, split=Split.TRAIN),
"val": Dataset.from_pandas(val_df, split=Split.VALIDATION),
"test": Dataset.from_pandas(test_df, split=Split.TEST),
}
)
# Create dataset ID
mini_dataset_id = "EuroEval/mlqa-es"
# Remove the dataset from Hugging Face Hub if it already exists
HfApi().delete_repo(mini_dataset_id, repo_type="dataset", missing_ok=True)
# Push the dataset to the Hugging Face Hub
dataset.push_to_hub(mini_dataset_id, private=True)
if __name__ == "__main__":
main()