Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -240,9 +240,9 @@ import gradio
|
|
240 |
import numpy
|
241 |
|
242 |
endpoint_types = shapes
|
243 |
-
density_options = ["{:.2f}".format(x) for x in numpy.linspace(0, 1,
|
244 |
thickness_options = [str(int(x)) for x in numpy.linspace(0, 10, 11)]
|
245 |
-
interpolation_options = [str(int(x)) for x in [3, 5, 10]]
|
246 |
|
247 |
def interpolate(t1, t2, d1, d2, th1, th2, steps):
|
248 |
decoder_model_boxes = tensorflow.keras.models.load_model('data/decoder_model_boxes', compile=False)
|
|
|
240 |
import numpy
|
241 |
|
242 |
endpoint_types = shapes
|
243 |
+
density_options = ["{:.2f}".format(x) for x in numpy.linspace(0.1, 1, 10)]
|
244 |
thickness_options = [str(int(x)) for x in numpy.linspace(0, 10, 11)]
|
245 |
+
interpolation_options = [str(int(x)) for x in [3, 5, 10, 20]]
|
246 |
|
247 |
def interpolate(t1, t2, d1, d2, th1, th2, steps):
|
248 |
decoder_model_boxes = tensorflow.keras.models.load_model('data/decoder_model_boxes', compile=False)
|