Fix inputs
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ demo = gr.Interface(
|
|
55 |
title="Titanic Predictive Analytics",
|
56 |
description="Experiment with Passenger class/Sex/Age/SibSp to predict if the person is survived or not.",
|
57 |
allow_flagging="never",
|
58 |
-
inputs=inputs,
|
59 |
outputs=gr.Textbox(label="Result: "))
|
60 |
|
61 |
demo.launch()
|
|
|
55 |
title="Titanic Predictive Analytics",
|
56 |
description="Experiment with Passenger class/Sex/Age/SibSp to predict if the person is survived or not.",
|
57 |
allow_flagging="never",
|
58 |
+
inputs=inputs(),
|
59 |
outputs=gr.Textbox(label="Result: "))
|
60 |
|
61 |
demo.launch()
|