Datasets:

Languages:
Catalan
Multilinguality:
monolingual
Size Categories:
unknown
Language Creators:
found
Annotations Creators:
expert-generated
ArXiv:
License:
File size: 1,589 Bytes
c096dbe
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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)