Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
-
-
|
| 2 |
-
tags:
|
| 3 |
-
- model_hub_mixin
|
| 4 |
-
- pytorch_model_hub_mixin
|
| 5 |
-
---
|
| 6 |
|
| 7 |
-
This
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CIFAR-10 CNN Model
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
+
This is a convolutional neural network trained on the CIFAR-10 dataset, achieving 92.59% test accuracy after 100 epochs.
|
| 4 |
+
## Model Details
|
| 5 |
+
- Architecture: 9 convolutional layers with batch normalization, max pooling, and dropout, followed by 3 fully connected layers.
|
| 6 |
+
- Dataset: CIFAR-10 (10 classes: airplane, automobile, bird, cat, deer, dog, frog, horse, ship, truck).
|
| 7 |
+
- Training: 100 epochs, SGD optimizer, CrossEntropyLoss, learning rate scheduling.
|
| 8 |
+
## Usage
|
| 9 |
+
Load the model using:
|
| 10 |
+
```python
|
| 11 |
+
from huggingface_hub import from_pretrained_pytorch
|
| 12 |
+
model = from_pretrained_pytorch('chandu1617/CIFAR10-CNN_Model')
|
| 13 |
+
```
|