sebastiansarasti commited on
Commit
c8d83fe
·
verified ·
1 Parent(s): d61f09f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -4
README.md CHANGED
@@ -10,19 +10,19 @@ license: mit
10
  - **Framework:** PyTorch
11
  - **Input Shape:** 3-channel RGB images
12
  - **Number of Parameters:** ~11.7M (Based on ResNet-18)
13
- - **Output:** Single regression value (wildfire severity)
14
 
15
  ## Model Description
16
 
17
- This model is a **fine-tuned ResNet-18** for wildfire severity regression. The pretrained **ResNet-18** backbone is used with its feature extractor **frozen**, while only the **final fully connected layer** is trained. The last fully connected layer has been replaced with a **single output neuron** for regression tasks, predicting the severity of the wildfire.
18
 
19
  ## Training Details
20
 
21
  - **Optimizer:** Adam
22
  - **Batch Size:** 32
23
- - **Loss Function:** Mean Squared Error (MSE)
24
  - **Number of Epochs:** 10
25
- - **Dataset:** [Wildfire Severity Dataset](https://www.kaggle.com/datasets/brsdincer/wildfire-detection-image-data)
26
 
27
  ### Losses Per Epoch
28
 
@@ -44,3 +44,4 @@ This model is a **fine-tuned ResNet-18** for wildfire severity regression. The p
44
  This model is released under the **MIT License**.
45
 
46
  ---
 
 
10
  - **Framework:** PyTorch
11
  - **Input Shape:** 3-channel RGB images
12
  - **Number of Parameters:** ~11.7M (Based on ResNet-18)
13
+ - **Output:** Binary classification (wildfire presence)
14
 
15
  ## Model Description
16
 
17
+ This model is a **fine-tuned ResNet-18** for wildfire classification. The pretrained **ResNet-18** backbone is used with its feature extractor **frozen**, while only the **final fully connected layer** is trained. The last fully connected layer has been replaced with a **single output neuron** for binary classification, predicting the presence of wildfire.
18
 
19
  ## Training Details
20
 
21
  - **Optimizer:** Adam
22
  - **Batch Size:** 32
23
+ - **Loss Function:** Binary Cross-Entropy (BCE)
24
  - **Number of Epochs:** 10
25
+ - **Dataset:** [Wildfire Detection Image Data](https://www.kaggle.com/datasets/brsdincer/wildfire-detection-image-data)
26
 
27
  ### Losses Per Epoch
28
 
 
44
  This model is released under the **MIT License**.
45
 
46
  ---
47
+