Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 353 Bytes
95cc038 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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)
|