Spaces:
Running
Running
add object detection use case
Browse files- main_page.py +1 -1
- pages/object_detection.py +2 -2
main_page.py
CHANGED
@@ -68,7 +68,7 @@ show_pages(
|
|
68 |
Page("pages/supervised_unsupervised_page.py", "Supervised vs Unsupervised", "π"),
|
69 |
Page("pages/timeseries_analysis.py", "Time Series Forecasting", "π"),
|
70 |
Page("pages/sentiment_analysis.py", "Sentiment Analysis", "π"),
|
71 |
-
|
72 |
Page("pages/recommendation_system.py", "Recommendation system", "π")
|
73 |
]
|
74 |
)
|
|
|
68 |
Page("pages/supervised_unsupervised_page.py", "Supervised vs Unsupervised", "π"),
|
69 |
Page("pages/timeseries_analysis.py", "Time Series Forecasting", "π"),
|
70 |
Page("pages/sentiment_analysis.py", "Sentiment Analysis", "π"),
|
71 |
+
Page("pages/object_detection.py", "Object Detection", "πΉ"), #need to reduce RAM costs
|
72 |
Page("pages/recommendation_system.py", "Recommendation system", "π")
|
73 |
]
|
74 |
)
|
pages/object_detection.py
CHANGED
@@ -173,8 +173,8 @@ st.markdown(" ")
|
|
173 |
############## SELECT AN IMAGE ###############
|
174 |
|
175 |
st.markdown("#### Step 1: Select an image")
|
176 |
-
st.
|
177 |
-
|
178 |
|
179 |
image_ = None
|
180 |
select_image_box = st.radio(
|
|
|
173 |
############## SELECT AN IMAGE ###############
|
174 |
|
175 |
st.markdown("#### Step 1: Select an image")
|
176 |
+
st.info("""First, select the image that you wish to use the Object detecion model on.""")
|
177 |
+
st.markdown("**Note:** The model was trained to detect clothing items on a single person. If your image has more than individuals, the model will ignore one of them in its detection.")
|
178 |
|
179 |
image_ = None
|
180 |
select_image_box = st.radio(
|