Commit
·
a3ed971
1
Parent(s):
1ade0f2
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
This repository contains model trained to predict orientation {0:'up', 1:'down'} of images.
|
| 2 |
The model '.pkl' file contains a dictionary with the following keys:
|
| 3 |
|
| 4 |
```python:
|
| 5 |
-
{
|
| 6 |
'optimizer': optimizer state dictionary
|
| 7 |
'scheduler': scheduler state dictionary
|
| 8 |
'model': model state dictionary
|
| 9 |
'epoch': checkpoint epoch
|
| 10 |
-
}
|
| 11 |
```
|
| 12 |
|
| 13 |
-
|
| 14 |
-
framework: pytorch
|
| 15 |
-
model: EfficientNet-B1
|
| 16 |
-
dataset: CIFAR10 (restructured to have random upright and upside-down samples, with labels {0:'up', 1:'down'}
|
| 17 |
-
imgSize: 224x224x3
|
| 18 |
-
---
|
| 19 |
-
|
| 20 |
-
The model can be initialized as:
|
| 21 |
|
| 22 |
```python:
|
| 23 |
model = torchvision.models.efficientnet_b1(pretrained=True)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
framework: pytorch
|
| 3 |
+
model: EfficientNet-B1
|
| 4 |
+
dataset: CIFAR10 (restructured to have random upright and upside-down samples, with labels {0:'up', 1:'down'}
|
| 5 |
+
imgSize: 224x224x3
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
|
| 9 |
This repository contains model trained to predict orientation {0:'up', 1:'down'} of images.
|
| 10 |
The model '.pkl' file contains a dictionary with the following keys:
|
| 11 |
|
| 12 |
```python:
|
|
|
|
| 13 |
'optimizer': optimizer state dictionary
|
| 14 |
'scheduler': scheduler state dictionary
|
| 15 |
'model': model state dictionary
|
| 16 |
'epoch': checkpoint epoch
|
|
|
|
| 17 |
```
|
| 18 |
|
| 19 |
+
The image size is 3x224x224. The model can be initialized as:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
```python:
|
| 22 |
model = torchvision.models.efficientnet_b1(pretrained=True)
|