Update README.md
Browse files
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("
|
| 50 |
-
# dataset = load_dataset("
|
| 51 |
-
# dataset = load_dataset("
|
| 52 |
-
# dataset = load_dataset("
|
| 53 |
-
# dataset = load_dataset("
|
| 54 |
-
# dataset = load_dataset("
|
| 55 |
-
# dataset = load_dataset("
|
| 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]
|