Datasets:

Languages:
Catalan
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
found
Annotations Creators:
expert-generated
ArXiv:
License:
teca / splitter_with_ids.py
ccasimiro's picture
Upload dataset
c096dbe
raw history blame
No virus
1.59 kB
import json
import pandas as pd
from sklearn.model_selection import train_test_split
# both files downloaded from https://zenodo.org/record/4621378
path_to_teca1 = 'dataset_te1.json'
path_to_teca2 = 'dataset_te_vilaweb.json'
teca1 = pd.read_json(path_to_teca1) # Shape: (14997, 4)
teca2 = pd.read_json(path_to_teca2) # Shape: (6166, 4)
teca1['id'] = 'te1_' + teca1['id'].astype(str)
teca2['id'] = 'vila_' + teca2['id'].astype(str)
teca = pd.concat([teca1, teca2]) # Shape: (21163, 4)
#teca.drop(['id'], axis=1, inplace=True) # now columns are: ['premise', 'hypothesis', 'label']
teca = teca.sample(frac=1).reset_index(drop=True) # shuffle rows
print('### VALUE COUNTS TECA ###')
print(teca['label'].value_counts())
# stratified split with harcoded percentages: 80% train, 10% dev, 10% test
train, dev_test = train_test_split(teca, test_size=0.2, random_state=42, stratify=teca['label'])
dev, test = train_test_split(dev_test, test_size=0.5, random_state=42, stratify=dev_test['label'])
print('### VALUE COUNTS TRAIN ###')
print(train['label'].value_counts())
print('### VALUE COUNTS DEV ###')
print(dev['label'].value_counts())
print('### VALUE COUNTS TEST ###')
print(test['label'].value_counts())
print('train shape:', train.shape[0], ', dev shape:', dev.shape[0], ', test shape:', test.shape[0])
print(train.head())
sets = {'train': train, 'dev': dev, 'test': test, 'full': teca}
for key in sets:
set_dict = sets[key].to_dict('records')
json_content = {"version": '1.0.1', "data": set_dict}
with open(key+'.json', 'w') as f:
json.dump(json_content, f)