File size: 305 Bytes
14e4843
 
 
 
d6d7ec6
14e4843
d6d7ec6
 
 
 
 
 
 
14e4843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3

from datasets import load_dataset

path = "pminervini/averitec"

ds = load_dataset(
    "json",
    data_files={
        "train": "/Users/pasquale/workspace/AVeriTeC/data/train.json",
        "dev": "/Users/pasquale/workspace/AVeriTeC/data/dev.json",
    },
)
ds.push_to_hub(path)