File size: 353 Bytes
ad576ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import datasets
if __name__=="__main__":
# load locally from this repo
ds = datasets.load_dataset("./stop.py", "small")
ds.push_to_hub("PaDaS-Lab/stop-small")
from datasets import load_dataset
dataset = load_dataset("PaDaS-Lab/stop-small")
print(dataset)
# load locally from this repo
# load locally from this repo
|