Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# UpsideDownClassifier
|
| 2 |
+
|
| 3 |
+
This classifier was trained using the [auto-cats-and-dogs](https://huggingface.co/datasets/nateraw/auto-cats-and-dogs) dataset. It was trained over 5 epochs using a pretrained resent18.
|
| 4 |
+
|
| 5 |
+
The configuration for the model was
|
| 6 |
+
```
|
| 7 |
+
config = {
|
| 8 |
+
"batch_size": 64,
|
| 9 |
+
"num_epochs": 5,
|
| 10 |
+
"lr": 0.005,
|
| 11 |
+
"betas": (0.9, 0.999),
|
| 12 |
+
"eps": 1e-6,
|
| 13 |
+
"lr": 8e-3,
|
| 14 |
+
"do_eval": True
|
| 15 |
+
}
|
| 16 |
+
```
|
| 17 |
+
|
| 18 |
+
## Traning Plots
|
| 19 |
+
|
| 20 |
+
## Some Results
|