Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,12 @@ Optical recognition of handwritten digits dataset
|
|
| 10 |
|
| 11 |
- **Homepage:** https://scikit-learn.org/stable/datasets/toy_dataset.html#digits-dataset
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
### Dataset Summary
|
| 14 |
|
| 15 |
This is a copy of the test set of the UCI ML hand-written digits datasets https://archive.ics.uci.edu/ml/datasets/Optical+Recognition+of+Handwritten+Digits
|
|
|
|
| 10 |
|
| 11 |
- **Homepage:** https://scikit-learn.org/stable/datasets/toy_dataset.html#digits-dataset
|
| 12 |
|
| 13 |
+
## Note - How to load this dataset directly with the datasets library
|
| 14 |
+
```
|
| 15 |
+
from datasets import load_dataset
|
| 16 |
+
dataset = load_dataset("sklearn-docs/digits",header=None)
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
### Dataset Summary
|
| 20 |
|
| 21 |
This is a copy of the test set of the UCI ML hand-written digits datasets https://archive.ics.uci.edu/ml/datasets/Optical+Recognition+of+Handwritten+Digits
|