3v324v23 commited on
Commit
4a62848
·
1 Parent(s): 17380d7

tryout no plot

Browse files
Files changed (1) hide show
  1. streamlit_simulation/app.py +2 -1
streamlit_simulation/app.py CHANGED
@@ -413,6 +413,7 @@ pred_timestamps = st.session_state.pred_timestamps
413
  # ============================== LightGBM Simulation ==============================
414
 
415
  if model_choice == "LightGBM" and st.session_state.is_running:
 
416
  model = load_lightgbm_model()
417
  st.write("Simulation started...")
418
  st.markdown('<div id="simulation"></div>', unsafe_allow_html=True)
@@ -458,7 +459,7 @@ if model_choice == "LightGBM" and st.session_state.is_running:
458
 
459
  # ============================== Transformer Simulation ==============================
460
 
461
- if model_choice == "Transformer Model(moments)":
462
  if st.session_state.is_running:
463
  st.write("Simulation started (Transformer)...")
464
  st.markdown('<div id="simulation"></div>', unsafe_allow_html=True)
 
413
  # ============================== LightGBM Simulation ==============================
414
 
415
  if model_choice == "LightGBM" and st.session_state.is_running:
416
+
417
  model = load_lightgbm_model()
418
  st.write("Simulation started...")
419
  st.markdown('<div id="simulation"></div>', unsafe_allow_html=True)
 
459
 
460
  # ============================== Transformer Simulation ==============================
461
 
462
+ if model_choice == "Transformer Model (moments)":
463
  if st.session_state.is_running:
464
  st.write("Simulation started (Transformer)...")
465
  st.markdown('<div id="simulation"></div>', unsafe_allow_html=True)