Model Pipeline - Color space conversion
This pipeline converts images from one color space to another, such as from RGB to grayscale or HSV. This helps models focus on important color features or simplify the data for better learning.
This pipeline converts images from one color space to another, such as from RGB to grayscale or HSV. This helps models focus on important color features or simplify the data for better learning.
Loss
0.5 |****
0.4 |***
0.3 |**
0.2 |*
0.1 |
1 2 3 4 5 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.45 | 0.60 | Initial training with RGB images, moderate accuracy |
| 2 | 0.38 | 0.68 | Loss decreased after grayscale conversion, model focuses on intensity |
| 3 | 0.30 | 0.75 | Using HSV color space improved color feature learning |
| 4 | 0.25 | 0.80 | Model converging with color space features |
| 5 | 0.22 | 0.83 | Final epoch shows stable improvement |