marta-marta commited on
Commit
be9bc89
·
1 Parent(s): 2dbee31

TEST COMMIT

Browse files
Files changed (1) hide show
  1. app.py +12 -4
app.py CHANGED
@@ -113,13 +113,21 @@ density_options = ["{:.2f}".format(x) for x in np.linspace(0.1, 1, 10)]
113
  thickness_options = [str(int(x)) for x in np.linspace(0, 10, 11)]
114
  interpolation_options = [str(int(x)) for x in [3, 5, 10, 20]]
115
 
116
- # Select the Options
117
- shape_1 = st.selectbox("Please select a shape", shape_options)
118
-
119
-
120
 
 
 
 
121
 
 
 
 
122
 
 
 
123
 
124
 
125
  # Load the models from existing huggingface model
 
113
  thickness_options = [str(int(x)) for x in np.linspace(0, 10, 11)]
114
  interpolation_options = [str(int(x)) for x in [3, 5, 10, 20]]
115
 
116
+ # Provide User Options
117
+ # Select Shapes
118
+ shape_1 = st.selectbox("Shape 1", shape_options)
119
+ shape_2 = st.selectbox("Shape 2", shape_options)
120
 
121
+ # Select Density
122
+ density_1 = st.selectbox("Density 1:", density_options)
123
+ density_2 = st.selectbox("Density 2:", density_options)
124
 
125
+ # Select Thickness
126
+ thickness_1 = st.selectbox("Thickness 1", thickness_options)
127
+ thickness_2 = st.selectbox("Thickness 2", thickness_options)
128
 
129
+ # Select Interpolation Length
130
+ interp_length = st.selectbox("Interpolation Length", interpolation_options)
131
 
132
 
133
  # Load the models from existing huggingface model