sebastiansarasti commited on
Commit
ef44e77
·
verified ·
1 Parent(s): 1a2be7a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -3
README.md CHANGED
@@ -1,3 +1,48 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ ---
6
+
7
+ # LeNet for Wildfire Classification
8
+
9
+ ## Model Details
10
+
11
+ - **Model Architecture:** LeNet (Modified)
12
+ - **Framework:** PyTorch
13
+ - **Input Shape:** 3-channel RGB images
14
+ - **Number of Parameters:** ~ (Calculated based on input size)
15
+ - **Output:** Binary classification (wildfire presence)
16
+
17
+ ## Model Description
18
+
19
+ This model is a modified version of the classic **LeNet** architecture, adapted for **wildfire classification**. It consists of two convolutional layers followed by three fully connected layers. The model was trained using **ReLU activations**, **max pooling**, and a **final linear layer** for binary classification.
20
+
21
+ ## Training Details
22
+
23
+ - **Optimizer:** (Not specified, assumed Adam or SGD)
24
+ - **Loss Function:** Binary Cross-Entropy (assumed)
25
+ - **Batch Size:** (Not specified)
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.8609 | 0.3632 |
34
+ | 2 | 0.3368 | 0.3023 |
35
+ | 3 | 0.2723 | 0.2852 |
36
+ | 4 | 0.1966 | 0.1914 |
37
+ | 5 | 0.2889 | 0.2610 |
38
+ | 6 | 0.1914 | 0.2747 |
39
+ | 7 | 0.2148 | 0.2520 |
40
+ | 8 | 0.1643 | 0.1751 |
41
+ | 9 | 0.1938 | 0.1929 |
42
+ | 10 | 0.1130 | 0.2095 |
43
+
44
+ ## License
45
+
46
+ This model is released under the **MIT License**.
47
+
48
+ ---