Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,12 +17,11 @@ def predict_bodymass(FlipperLength):
|
|
17 |
iface = gr.Interface(
|
18 |
fn=predict_bodymass,
|
19 |
inputs=[
|
20 |
-
gr.inputs.Textbox(placeholder="
|
21 |
],
|
22 |
-
title="
|
23 |
outputs="text",
|
24 |
-
examples=[[195],
|
25 |
-
[183]]
|
26 |
)
|
27 |
|
28 |
if __name__ == "__main__":
|
|
|
17 |
iface = gr.Interface(
|
18 |
fn=predict_bodymass,
|
19 |
inputs=[
|
20 |
+
gr.inputs.Textbox(placeholder="Introduce la longitud del pico(mm)",numeric=True,label="Flipper length")
|
21 |
],
|
22 |
+
title="Modelo de regresi贸n para el c谩lculo de masa corporal de ping眉inos",
|
23 |
outputs="text",
|
24 |
+
examples=[[195], [183], [220]]
|
|
|
25 |
)
|
26 |
|
27 |
if __name__ == "__main__":
|