Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
---
|
6 |
+
|
7 |
+
# AlexNetWildFire for Wildfire Classification
|
8 |
+
|
9 |
+
## Model Details
|
10 |
+
|
11 |
+
- **Model Architecture:** AlexNet (Modified)
|
12 |
+
- **Framework:** PyTorch
|
13 |
+
- **Input Shape:** 3-channel RGB images
|
14 |
+
- **Number of Parameters:** ~ (Based on AlexNet)
|
15 |
+
- **Output:** Binary classification (wildfire presence)
|
16 |
+
|
17 |
+
## Model Description
|
18 |
+
|
19 |
+
This model is a **fine-tuned AlexNet** for wildfire classification. The pretrained **AlexNet** backbone is used with its feature extractor **frozen**, while only the **final classification layer** is trained. The last fully connected layer has been replaced with a **single output neuron** for binary classification.
|
20 |
+
|
21 |
+
## Training Details
|
22 |
+
|
23 |
+
- **Optimizer:** Adam
|
24 |
+
- **Batch Size:** 32
|
25 |
+
- **Loss Function:** Binary Cross-Entropy (assumed)
|
26 |
+
- **Number of Epochs:** 10
|
27 |
+
- **Dataset:** [Wildfire Detection Image Data](https://www.kaggle.com/datasets/brsdincer/wildfire-detection-image-data)
|
28 |
+
|
29 |
+
### Losses Per Epoch
|
30 |
+
|
31 |
+
| Epoch | Training Loss | Validation Loss |
|
32 |
+
|-------|--------------|----------------|
|
33 |
+
| 1 | 0.2161 | 0.2249 |
|
34 |
+
| 2 | 0.1158 | 0.3618 |
|
35 |
+
| 3 | 0.1004 | 0.3120 |
|
36 |
+
| 4 | 0.0213 | 0.3541 |
|
37 |
+
| 5 | 0.0299 | 0.2749 |
|
38 |
+
| 6 | 0.0326 | 0.2352 |
|
39 |
+
| 7 | 0.0032 | 0.2222 |
|
40 |
+
| 8 | 0.0012 | 0.3360 |
|
41 |
+
| 9 | 0.0001 | 0.3072 |
|
42 |
+
| 10 | 0.0000 | 0.2819 |
|
43 |
+
|
44 |
+
## License
|
45 |
+
|
46 |
+
This model is released under the **MIT License**.
|
47 |
+
|
48 |
+
---
|