File size: 889 Bytes
a005378
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import pandas as pd
from collections import Counter
import json
import random

df = pd.read_csv("subjects-questions.csv")
df.fillna('', inplace=True)
print(df)

label2id = {label: idx for idx, label in enumerate(df['Subject'].unique())}


rows = [{'text': row['eng'].strip(),
         'label': label2id[row['Subject']],
         'label_text': row['Subject'],
         } for idx, row in df.iterrows()]

random.seed(42)
random.shuffle(rows)

num_test = 5000
splits = {'test': rows[0:num_test], 'train': rows[num_test:]}

print("Train:", len(splits['train']))
print("Test:", len(splits['test']))

num_labels = Counter()

for row in splits['test']:
    num_labels[row['label']] += 1
print(num_labels)

for split in ['train', 'test']:
    with open(f'{split}.jsonl', 'w') as fOut:
        for row in splits[split]:
            fOut.write(json.dumps(row)+"\n")