Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ with st.sidebar:
|
|
97 |
|
98 |
molecule_num_input = st.number_input('Number of molecules to generate', min_value=1, max_value=100_000, value=1000, step=1)
|
99 |
|
100 |
-
seed_input = st.number_input("Input
|
101 |
|
102 |
submitted = st.form_submit_button("Start Computing")
|
103 |
|
|
|
97 |
|
98 |
molecule_num_input = st.number_input('Number of molecules to generate', min_value=1, max_value=100_000, value=1000, step=1)
|
99 |
|
100 |
+
seed_input = st.number_input("Input an RNG seed for reproducibiliy", min_value=0, value=random.randint(1, 1000), step=1)
|
101 |
|
102 |
submitted = st.form_submit_button("Start Computing")
|
103 |
|