budijuarto commited on
Commit
79f4d13
·
verified ·
1 Parent(s): aea798c

Upload configs/space.yaml

Browse files
Files changed (1) hide show
  1. configs/space.yaml +38 -0
configs/space.yaml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ project:
2
+ name: egg-damage-top3-space
3
+
4
+ paths:
5
+ data_dir: "data"
6
+ output_dir: "outputs"
7
+ model_dir: "models"
8
+ split_csv: "outputs/splits.csv"
9
+
10
+ seed: 42
11
+
12
+ preprocessing:
13
+ image_size: 224
14
+
15
+ models:
16
+ enabled:
17
+ hog_svm: false
18
+ lbp_svm: true
19
+ mobilenet_v3: true
20
+ resnet50: false
21
+ efficientnet_b0: false
22
+ densenet121: false
23
+ xception: true
24
+ vit_small: false
25
+ pretrained: false
26
+
27
+ evaluation:
28
+ threshold: 0.5
29
+
30
+ explainability:
31
+ enabled: true
32
+ max_images: 4
33
+
34
+ gradio:
35
+ host: "0.0.0.0"
36
+ port: 7860
37
+ share: false
38
+ low_confidence_threshold: 0.65