Stephan Sturges commited on
Commit
c8fa30f
1 Parent(s): 93a9ad6

adding all overfit models

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -96,9 +96,17 @@ st.write("Upload an image to process with the ONNX OpenLander model!")
96
  st.write("Bear in mind that this model is **much less refined** than the embedded models at the moment.")
97
 
98
  models = {
99
- "Embedded model short trained: DeeplabV3+, MobilenetV2, 416px resolution": "end2end.onnx",
100
  "Embedded model better trained: DeeplabV3+, MobilenetV2, 416px resolution": "20230608_onnx_416_mbnv2_dl3/end2end.onnx",
101
- "Embedded model with massive overfitting: DV3+ MBv2, 416px": "export240k.onnx"
 
 
 
 
 
 
 
 
 
102
  }
103
 
104
 
 
96
  st.write("Bear in mind that this model is **much less refined** than the embedded models at the moment.")
97
 
98
  models = {
 
99
  "Embedded model better trained: DeeplabV3+, MobilenetV2, 416px resolution": "20230608_onnx_416_mbnv2_dl3/end2end.onnx",
100
+ "test model 24k: DV3+ MBv2, 416px": "test_24000.onnx",
101
+ "test model 48k: DV3+ MBv2, 416px": "test_48000.onnx",
102
+ "test model 72k: DV3+ MBv2, 416px": "test_72000.onnx",
103
+ "test model 96k: DV3+ MBv2, 416px": "test_96000.onnx",
104
+ "test model 120k: DV3+ MBv2, 416px": "test_120000.onnx",
105
+ "test model 144k: DV3+ MBv2, 416px": "test_144000.onnx",
106
+ "test model 168k: DV3+ MBv2, 416px": "test_168000.onnx",
107
+ "test model 192k: DV3+ MBv2, 416px": "test_192000.onnx",
108
+ "test model 216k: DV3+ MBv2, 416px": "test_216000.onnx",
109
+ "test model 240k: DV3+ MBv2, 416px": "test_240000.onnx"
110
  }
111
 
112