Update my_model/state_manager.py
Browse files
my_model/state_manager.py
CHANGED
@@ -29,10 +29,10 @@ class StateManager:
|
|
29 |
|
30 |
|
31 |
with col1:
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
|
37 |
# Conditional display of model settings
|
38 |
with col2:
|
|
|
29 |
|
30 |
|
31 |
with col1:
|
32 |
+
st.selectbox("Choose a method:", ["Fine-Tuned Model", "In-Context Learning (n-shots)"], index=0, key='method')
|
33 |
+
detection_model = st.selectbox("Choose a model for objects detection:", ["yolov5", "detic"], index=1, key='detection_model')
|
34 |
+
default_confidence = 0.2 if st.session_state.detection_model == "yolov5" else 0.4
|
35 |
+
self.set_slider_value(text="Select minimum detection confidence level", min_value=0.1, max_value=0.9, value=default_confidence, step=0.1, slider_key_name='confidence_level')
|
36 |
|
37 |
# Conditional display of model settings
|
38 |
with col2:
|