Spaces:
Sleeping
Sleeping
tryout
Browse files
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 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
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 |
|