Views
No views yet
from aswin_air_pollution import CustomCNN
model = CustomCNN.from_pretrained('aswincandra/rgai-air-pollution-image-classification')The proposed model accepts (224 x 224 x 3) RGB images as inputs. The initial model block is comprised of two CNN layers with 64 filters and one maxpooling layer. The second model block contains two CNN layers with 128 filters and one maxpooling layer. The third through fifth blocks use modified residual blocks that only apply one CNN layer, with the output of that CNN layer being added to the previous maxpooling output before being transmitted to the maxpooling layer. All maxpooling layers employ a kernel size of 3x3. Instead of ReLU, the activation function for all CNN layers is LeakyReLU. These five blocks are utilized for image feature extraction. The extracted features will then be flattened and transmitted to FC layer sets. The first FC layer consists of 256 neurons, whereas the second FC layer consists of 128 neurons. Additionally, these two FC layers use LeakyReLU as an activation function.
| Epoch | Training Loss | Training Accuracy | Validation Loss | Validation Accuracy |
|---|---|---|---|---|
| 1 | 1.6998 | 0.2595 | 1.5246 | 0.3568 |
| 2 | 1.4923 | 0.3758 | 1.4040 | 0.4375 |
| 3 | 1.3921 | 0.4374 | 1.2898 | 0.4911 |
| 4 | 1.2737 | 0.5020 | 1.1851 | 0.5232 |
| 5 | 1.1706 | 0.5424 | 1.1138 | 0.5738 |
| 6 | 1.0749 | 0.5842 | 1.0104 | 0.6182 |
| 7 | 0.9780 | 0.6256 | 0.9365 | 0.6452 |
| 8 | 0.8919 | 0.6637 | 0.8426 | 0.6998 |
| 9 | 0.8184 | 0.7034 | 0.8146 | 0.7029 |
| 10 | 0.7486 | 0.7286 | 0.7454 | 0.7494 |
| 11 | 0.6851 | 0.7560 | 0.6980 | 0.7560 |
| 12 | 0.6305 | 0.7759 | 0.6384 | 0.7744 |
| 13 | 0.5859 | 0.7933 | 0.5911 | 0.7922 |
| 14 | 0.5358 | 0.8141 | 0.5786 | 0.7963 |
| 15 | 0.4971 | 0.8270 | 0.5441 | 0.8142 |