Model Pipeline - torchvision pre-trained models
This pipeline uses a pre-trained model from torchvision to classify images. It starts with input images, processes them through the model, and outputs predicted labels with confidence scores.
This pipeline uses a pre-trained model from torchvision to classify images. It starts with input images, processes them through the model, and outputs predicted labels with confidence scores.
Loss
1.0 |***************
0.8 |************
0.6 |********
0.4 |*****
0.2 |***
0.0 +----------------
1 2 3 4 5 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.75 | 0.65 | Initial training loss and accuracy using fine-tuning on a small dataset |
| 2 | 0.50 | 0.78 | Loss decreased and accuracy improved after second epoch |
| 3 | 0.35 | 0.85 | Model continues to learn, showing better predictions |
| 4 | 0.28 | 0.89 | Training converging with lower loss and higher accuracy |
| 5 | 0.22 | 0.92 | Final epoch shows good performance on training data |