open-moe-llm-leaderboard / cli /averitec-upload-cli.py
Yaofu3's picture
formatting code
d6d7ec6
raw history blame
No virus
305 Bytes
#!/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)