Kakyoin03 commited on
Commit
2616abe
·
verified ·
1 Parent(s): 5229bbf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +33 -0
README.md ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ tags:
4
+ - image-classification
5
+ - wildfire-detection
6
+ datasets:
7
+ - your-dataset-name # Optional: Add the name of the dataset you used
8
+ ---
9
+
10
+ # ResNet50 Fine-tuned for Wildfire Detection
11
+
12
+ This model is a ResNet50 fine-tuned on the [Wildfire Prediction Dataset](https://www.kaggle.com/datasets/abdelghaniaaba/wildfire-prediction-dataset) for image classification to detect wildfires.
13
+
14
+ ## Model Details
15
+
16
+ The model is a ResNet50 architecture with a custom classification head. It was trained in two phases: first with the backbone frozen, and then with full fine-tuning.
17
+
18
+ ## Training
19
+
20
+ The model was trained on the provided dataset with the following characteristics:
21
+ - **Train samples:** 30250
22
+ - **Validation samples:** 6300
23
+ - **Batch size:** 16
24
+ - **Epochs (Phase 1 - Head):** 5
25
+ - **Epochs (Phase 2 - Full Fine-tuning):** 3
26
+
27
+ ## Performance
28
+
29
+ (Add details about the model's performance metrics, e.g., accuracy, loss, etc. from your training output)
30
+
31
+ ## Usage
32
+
33
+ (Provide code examples on how to load and use the model for inference)