File size: 987 Bytes
07f5bd8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b0c25d6
 
 
 
 
 
 
07f5bd8
b0c25d6
 
b1cc259
b0c25d6
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# UpsideDownClassifier

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. 

The configuration for the model was 
```
config = {
    "batch_size": 64,
    "num_epochs": 5,
    "lr": 0.005,
    "betas": (0.9, 0.999),
    "eps": 1e-6,
    "lr": 8e-3,
    "do_eval": True
}
```

## Traning Plots

We can see in the figures below the training plots for accuracy and the loss in both, training and validation sets.

### Accuracy Plot
![Accuracy](https://huggingface.co/israfelsr/UpsideDownClassifier/blob/main/accuracy.png)
### Loss Plot
![Loss](https://huggingface.co/israfelsr/UpsideDownClassifier/blob/main/loss.png)

## Some Results

Evaluating on the Test Set, we obtain:
- Accuracy = 0.9696

A batch with some missclassifications can be seen in the picture below.
![Results](https://huggingface.co/israfelsr/UpsideDownClassifier/blob/main/results.png)