File size: 235 Bytes
5cf62e2
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from datasets import load_dataset

# Use the custom dataset script from the remote repo
ds = load_dataset("shirve13/Demo", data_dir=".", download_mode="force_redownload", trust_remote_code=True)

# Print a sample
print(ds["train"][0])