laudavid commited on
Commit
4cf63f7
β€’
1 Parent(s): f2a4fca

add object detection use case

Browse files
Files changed (2) hide show
  1. main_page.py +1 -1
  2. 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
- #Page("pages/object_detection.py", "Object Detection", "πŸ“Ή"), #need to reduce RAM costs
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.markdown("""First, select the image you want to apply the object detection model to.
177
- 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(
 
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(