rayaberova commited on
Commit
5e3e33a
·
verified ·
1 Parent(s): 352fa2d

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - deep-learning
4
+ - pytorch
5
+ ---
6
+
7
+ # Segmentation multiclass model 🚀
8
+
9
+ This model is a SegFormer5 trained on Sentinel2 images and CLCPlusBackBone Copernicus labels. The Sentinel2 images have 14 bands (original 12 bands + NDVI and NDWI) and their size is 250*250 pixels (resolution = 10m).
10
+
11
+ ## Download the model
12
+ ```python
13
+ from huggingface_hub import hf_hub_download
14
+
15
+ model_path = hf_hub_download("InseeFrLab/hackathon-ntts-2025-segmentation", "segmentation-multiclass-model-french-nsi-hackathon-ntts-2025.pth")
16
+ ```