Tasfiya025 commited on
Commit
59312ae
·
verified ·
1 Parent(s): 13ad75f

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +24 -0
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "custom-unet-cloud-segmentation",
3
+ "architectures": [
4
+ "UnetModel"
5
+ ],
6
+ "model_type": "semantic_segmentation",
7
+ "in_channels": 3,
8
+ "out_channels": 2,
9
+ "base_filters": 64,
10
+ "depth": 4,
11
+ "downsampling_blocks": ["ConvBlock", "ConvBlock", "ConvBlock", "ConvBlock"],
12
+ "upsampling_blocks": ["UpConvBlock", "UpConvBlock", "UpConvBlock", "UpConvBlock"],
13
+ "id2label": {
14
+ "0": "Background/Clear_Sky",
15
+ "1": "Cloud"
16
+ },
17
+ "label2id": {
18
+ "Background/Clear_Sky": 0,
19
+ "Cloud": 1
20
+ },
21
+ "num_labels": 2,
22
+ "image_size": [256, 256],
23
+ "pytorch_version": "2.1.0"
24
+ }