Update README.md
Browse files
README.md
CHANGED
|
@@ -7,4 +7,25 @@ metrics:
|
|
| 7 |
pipeline_tag: image-classification
|
| 8 |
tags:
|
| 9 |
- pytorch
|
| 10 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pipeline_tag: image-classification
|
| 8 |
tags:
|
| 9 |
- pytorch
|
| 10 |
+
---
|
| 11 |
+
# Model Card for Model ID
|
| 12 |
+
|
| 13 |
+
Fine-tuned for image classification of Hymenoptera (Bees and Ants). Base model from PyTorch's pretrained AlexNet.
|
| 14 |
+
|
| 15 |
+
```{python}
|
| 16 |
+
models.alexnet(weights=models.AlexNet_Weights.IMAGENET1K_V1)
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Model Details
|
| 20 |
+
|
| 21 |
+
```
|
| 22 |
+
Sequential(
|
| 23 |
+
(0): Dropout(p=0.5, inplace=False)
|
| 24 |
+
(1): Linear(in_features=9216, out_features=4096, bias=True)
|
| 25 |
+
(2): ReLU(inplace=True)
|
| 26 |
+
(3): Dropout(p=0.5, inplace=False)
|
| 27 |
+
(4): Linear(in_features=4096, out_features=4096, bias=True)
|
| 28 |
+
(5): ReLU(inplace=True)
|
| 29 |
+
(6): Linear(in_features=4096, out_features=2, bias=True)
|
| 30 |
+
)
|
| 31 |
+
```
|