Downloads · 30 days
13
7% of all-time downloads
LWWZH/Mini-Vision-V3
Mini-Vision-V3 is a image classification model from LWWZH. Use it when you need a label for an image. It is set up for pytorch. The card lists the license as mit.
Downloads · 30 days
13
7% of all-time downloads
All-time downloads
188
Public
Repo size
3.2 MB
Likes
0
Public
Click a slice to open those files.
.pth1.6 MB · 48%
From the Hugging Face model README
Welcome to Mini-Vision-V3, the third model in the Mini-Vision series. Following the MNIST digit recognition task in V2, this model expands capabilities to 47 classes of handwritten characters (Digits & Uppercase & Lowercase letters) using the EMNIST Balanced dataset. It features a deeper yet highly efficient 3-layer CNN architecture, achieving over 90% accuracy with less than half a million parameters.
Mini-Vision-V3 is a custom 3-layer CNN architecture tailored for 28x28 grayscale images. While maintaining a lightweight footprint with only 0.40M parameters (half the size of V2), it handles the significantly increased complexity of 47 character classes. This project demonstrates how depth and Batch Normalization can improve performance on more complex classification tasks without increasing model size.
The network utilizes a deeper structure compared to V2, featuring three convolutional blocks. This allows for better feature extraction in the more complex 47-class task.
| Layer | Input Channels | Output Channels | Kernel Size | Stride | Padding | Activation | Other |
|---|---|---|---|---|---|---|---|
| Conv Block 1 | 1 | 32 | 3 | 1 | 1 | ReLU | MaxPool(2), BatchNorm |
| Conv Block 2 | 32 | 64 | 3 | 1 | 1 | ReLU | MaxPool(2), BatchNorm |
| Conv Block 3 | 64 | 128 | 3 | 1 | 1 | ReLU | MaxPool(2), BatchNorm |
| Flatten | - | - | - | - | - | - | Output: 1152 |
| Linear 1 | 1152 | 256 | - | - | - | ReLU | Dropout(0.3) |
| Linear 2 | 256 | 47 | - | - | - | - | - |
The training strategy was adjusted for the larger dataset and increased class complexity, utilizing a higher initial learning rate and a StepLR scheduler for convergence.
The model achieved solid results on the EMNIST Balanced test set (18800 samples), selected based on the best performing epoch (Epoch 40):
| Metric | Value |
|---|---|
| Test Accuracy | 90.06% |
| Test Loss | 0.28 |
| Train Loss | 0.28 |
| Parameters | 0.40M |
Below are the training and testing curves visualized via TensorBoard.
(Recorded every epoch)
(Recorded every epoch)
Run the Gradio demo to draw characters and see predictions in real-time:
python demo.py
Note: The demo supports inverted drawing (white ink on black background) to match the EMNIST format.
.
├── model.py # Model architecture definition (MiniVisionV3)
├── train.py # Training script
├── demo.py # Gradio Web Interface
├── Mini-Vision-V3.pth # Trained model weights (Epoch 40)
├── Mini-Vision-V3.safetensors # Safetensors format model weights
├── config.json
├── README.md
└── assets
├── train_loss.png # Visualized train loss graph
└── test_loss.png # Visualized test loss graph
This project is licensed under the MIT License.