Spaces:
Running
Running
Agarwal
commited on
Commit
•
b96be53
1
Parent(s):
2e0c312
update app
Browse files
app.py
CHANGED
@@ -4,9 +4,9 @@ from utils import *
|
|
4 |
import warnings
|
5 |
|
6 |
st.write(" ")
|
7 |
-
raq_ra = st.number_input("#
|
8 |
-
fkt = st.number_input("#
|
9 |
-
fkv = st.number_input("#
|
10 |
num_points =st.number_input("# number of profile points ", value=128, placeholder=" e.g. 128")
|
11 |
num_points = int(num_points)
|
12 |
st.write("raq/ra = ", raq_ra, "FKT = ", fkt, "FKV = ", fkv, "profile points = ", num_points)
|
|
|
4 |
import warnings
|
5 |
|
6 |
st.write(" ")
|
7 |
+
raq_ra = st.number_input("# raq/ra ", value=None, placeholder="betweel 0 and 10")
|
8 |
+
fkt = st.number_input("# FKT ", value=None, placeholder="betweel 1e+6 and 1e+10")
|
9 |
+
fkv = st.number_input("# FKV ", value=None, placeholder="betweel 1 and 100")
|
10 |
num_points =st.number_input("# number of profile points ", value=128, placeholder=" e.g. 128")
|
11 |
num_points = int(num_points)
|
12 |
st.write("raq/ra = ", raq_ra, "FKT = ", fkt, "FKV = ", fkv, "profile points = ", num_points)
|