p2pfl commited on
Commit
3fd8f46
·
verified ·
1 Parent(s): 175a43b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md CHANGED
@@ -1,4 +1,12 @@
1
  ---
 
 
 
 
 
 
 
 
2
  dataset_info:
3
  features:
4
  - name: image
@@ -22,3 +30,36 @@ configs:
22
  - split: test
23
  path: data/test-*
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
+ license: mit
4
+ multilinguality: monolingual
5
+ task_categories:
6
+ - image-classification
7
+ task_ids:
8
+ - multi-class-image-classification
9
+ pretty_name: MNIST
10
  dataset_info:
11
  features:
12
  - name: image
 
30
  - split: test
31
  path: data/test-*
32
  ---
33
+
34
+ # 🖼️ MNIST (Extracted from PyTorch Vision)
35
+
36
+ MNIST is a classic dataset of handwritten digits, widely used for image classification tasks in machine learning.
37
+
38
+ ## ℹ️ Dataset Details
39
+
40
+ ## 📖 Dataset Description
41
+
42
+ The MNIST database of handwritten digits is a commonly used benchmark dataset in machine learning. It consists of 70,000 grayscale images of handwritten digits (0-9), each with a size of 28x28 pixels. The dataset is split into 60,000 training images and 10,000 testing images. MNIST is often used for evaluating and comparing different machine learning algorithms, particularly in the field of image recognition.
43
+
44
+ ## 📂 Dataset Structure
45
+
46
+ Each data point is a pair:
47
+
48
+ - **image:** A visual captured (stored as a PIL Image).
49
+ - **label:** The corresponding label (an integer representing the class).
50
+
51
+ ## 🚀 How to Use this Dataset
52
+
53
+ ```python
54
+ from datasets import load_dataset
55
+
56
+ dataset = load_dataset('MNIST')
57
+ ```
58
+
59
+ ## 🗄️ Source Data
60
+
61
+ Auto-generated from PyTorch Vision, please check the original [MNIST](http://yann.lecun.com/exdb/mnist/) for more info.
62
+
63
+ ## 📜 License
64
+
65
+ mit