JaredBailey commited on
Commit
f43a645
·
verified ·
1 Parent(s): 23cb6bc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -235,7 +235,7 @@ if st.session_state.screen == 2:
235
  if 'results' not in st.session_state or st.session_state.results == None:
236
  st.write("\n\n")
237
  st.markdown("<p style='text-align: center; color: black;'>The model is working. Please be patient...</p>", unsafe_allow_html=True)
238
- st.markdown("<p style='text-align: center; color: black;'>This process takes around 30 seconds.</p>", unsafe_allow_html=True)
239
  st.session_state.results = st.session_state.model.predict(st.session_state.tiles, conf=st.session_state.confidence) # predict
240
  st.rerun()
241
 
 
235
  if 'results' not in st.session_state or st.session_state.results == None:
236
  st.write("\n\n")
237
  st.markdown("<p style='text-align: center; color: black;'>The model is working. Please be patient...</p>", unsafe_allow_html=True)
238
+ st.markdown("<p style='text-align: center; color: black;'>This process can take up to 30 seconds.</p>", unsafe_allow_html=True)
239
  st.session_state.results = st.session_state.model.predict(st.session_state.tiles, conf=st.session_state.confidence) # predict
240
  st.rerun()
241