EC2 Default User
commited on
Commit
·
df8ab20
1
Parent(s):
269e36f
ST AI-ModelZoo-3.2.0
Browse files- dash_app.py +5 -1
dash_app.py
CHANGED
@@ -84,7 +84,9 @@ local_yamls = {
|
|
84 |
'object_detection': 'stm32ai-modelzoo-services/object_detection/user_config.yaml',
|
85 |
'audio_event_detection': 'stm32ai-modelzoo-services/audio_event_detection/user_config.yaml',
|
86 |
'pose_estimation': 'stm32ai-modelzoo-services/pose_estimation/user_config.yaml',
|
87 |
-
'semantic_segmentation': 'stm32ai-modelzoo-services/semantic_segmentation/user_config.yaml'
|
|
|
|
|
88 |
}
|
89 |
|
90 |
def banner():
|
@@ -202,6 +204,8 @@ def create_dashboard_layout():
|
|
202 |
{'label': 'Object Detection', 'value': 'object_detection'},
|
203 |
{'label': 'Pose estimation', 'value': 'pose_estimation'},
|
204 |
{'label': 'Semantic Segmentation', 'value': 'semantic_segmentation'},
|
|
|
|
|
205 |
],
|
206 |
placeholder="Please select your use case",
|
207 |
className="mb-4"
|
|
|
84 |
'object_detection': 'stm32ai-modelzoo-services/object_detection/user_config.yaml',
|
85 |
'audio_event_detection': 'stm32ai-modelzoo-services/audio_event_detection/user_config.yaml',
|
86 |
'pose_estimation': 'stm32ai-modelzoo-services/pose_estimation/user_config.yaml',
|
87 |
+
'semantic_segmentation': 'stm32ai-modelzoo-services/semantic_segmentation/user_config.yaml',
|
88 |
+
'depth_estimation': 'stm32ai-modelzoo-services/depth_estimation/user_config.yaml',
|
89 |
+
'neural_style_transfer': 'stm32ai-modelzoo-services/neural_style_transfer/user_config.yaml',
|
90 |
}
|
91 |
|
92 |
def banner():
|
|
|
204 |
{'label': 'Object Detection', 'value': 'object_detection'},
|
205 |
{'label': 'Pose estimation', 'value': 'pose_estimation'},
|
206 |
{'label': 'Semantic Segmentation', 'value': 'semantic_segmentation'},
|
207 |
+
{'label': 'Depth Estimation', 'value': 'depth_estimation'},
|
208 |
+
{'label': 'Neural Style Transfer', 'value': 'neural_style_transfer'},
|
209 |
],
|
210 |
placeholder="Please select your use case",
|
211 |
className="mb-4"
|