leonleyang commited on
Commit
8c94c2b
·
verified ·
1 Parent(s): 6807d9d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -7
README.md CHANGED
@@ -46,13 +46,13 @@ Below is a quick example of how to load this dataset via the Hugging Face Datase
46
  from datasets import load_dataset
47
 
48
  # Load the dataset
49
- dataset = load_dataset("digits/emnist", name="byclass", split="train", trust_remote_code=True)
50
- # dataset = load_dataset("digits/emnist", name="byclass", split="test", trust_remote_code=True)
51
- # dataset = load_dataset("digits/emnist", name="bymerge", split="train", trust_remote_code=True)
52
- # dataset = load_dataset("digits/emnist", name="balanced", split="train", trust_remote_code=True)
53
- # dataset = load_dataset("digits/emnist", name="letters", split="train", trust_remote_code=True)
54
- # dataset = load_dataset("digits/emnist", name="digits", split="train", trust_remote_code=True)
55
- # dataset = load_dataset("digits/emnist", name="mnist", split="train", trust_remote_code=True)
56
 
57
  # Access a sample from the dataset
58
  example = dataset[0]
 
46
  from datasets import load_dataset
47
 
48
  # Load the dataset
49
+ dataset = load_dataset("randall-lab/emnist", name="byclass", split="train", trust_remote_code=True)
50
+ # dataset = load_dataset("randall-lab/emnist", name="byclass", split="test", trust_remote_code=True)
51
+ # dataset = load_dataset("randall-lab/emnist", name="bymerge", split="train", trust_remote_code=True)
52
+ # dataset = load_dataset("randall-lab/emnist", name="balanced", split="train", trust_remote_code=True)
53
+ # dataset = load_dataset("randall-lab/emnist", name="letters", split="train", trust_remote_code=True)
54
+ # dataset = load_dataset("randall-lab/emnist", name="digits", split="train", trust_remote_code=True)
55
+ # dataset = load_dataset("randall-lab/emnist", name="mnist", split="train", trust_remote_code=True)
56
 
57
  # Access a sample from the dataset
58
  example = dataset[0]