Spaces:
Running
Running
change text on button
Browse files
app.py
CHANGED
@@ -111,7 +111,7 @@ with st.sidebar:
|
|
111 |
|
112 |
molecule_num_input = st.number_input('Number of molecules to generate', min_value=1, max_value=100_000, value=1000, step=1)
|
113 |
|
114 |
-
seed_input = st.number_input("
|
115 |
|
116 |
submitted = st.form_submit_button("Start Computing")
|
117 |
|
|
|
111 |
|
112 |
molecule_num_input = st.number_input('Number of molecules to generate', min_value=1, max_value=100_000, value=1000, step=1)
|
113 |
|
114 |
+
seed_input = st.number_input("RNG seed value (can be used for reproducibility):", min_value=0, value=42, step=1)
|
115 |
|
116 |
submitted = st.form_submit_button("Start Computing")
|
117 |
|