3v324v23 commited on
Commit
ade71f0
·
1 Parent(s): ab78aff
Files changed (1) hide show
  1. streamlit_simulation/app.py +4 -5
streamlit_simulation/app.py CHANGED
@@ -183,11 +183,10 @@ def predict_transformer_step(model, dataset, idx, device):
183
 
184
 
185
  def init_simulation_layout():
186
- col1, spacer, col2 = st.columns([3, 0.2, 1])
187
- plot_title = col1.empty()
188
- plot_container = col1.empty()
189
- x_axis_label = col1.empty()
190
- info_container = col2.empty()
191
  return plot_title, plot_container, x_axis_label, info_container
192
 
193
 
 
183
 
184
 
185
  def init_simulation_layout():
186
+ plot_title = st.empty()
187
+ plot_container = st.empty()
188
+ x_axis_label = st.empty()
189
+ info_container = st.empty()
 
190
  return plot_title, plot_container, x_axis_label, info_container
191
 
192