tools-4all commited on
Commit
a4b02fa
·
verified ·
1 Parent(s): 2ad835b

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +14 -0
config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "custom_unet",
3
+ "task": "image-segmentation",
4
+ "encoder_name": "efficientnet-b3",
5
+ "input_size": [512, 512],
6
+ "num_classes": 1,
7
+ "preprocessing": {
8
+ "mean": [0.485, 0.456, 0.406],
9
+ "std": [0.229, 0.224, 0.225]
10
+ },
11
+ "input_names": ["input"],
12
+ "output_names": ["output"],
13
+ "opset_version": 15
14
+ }