Update default values to value in inputs.
Browse files
app.py
CHANGED
@@ -38,16 +38,16 @@ iface = gr.Interface(
|
|
38 |
description="Predict the quality of a wine based on its features.",
|
39 |
allow_flagging="never",
|
40 |
inputs=[
|
41 |
-
gr.Number(label="fixed_acidity",
|
42 |
-
gr.Number(label="volatile_acidity",
|
43 |
-
gr.Number(label="citric_acid",
|
44 |
-
gr.Number(label="residual_sugar",
|
45 |
-
gr.Number(label="chlorides",
|
46 |
-
gr.Number(label="total_sulfur_dioxide",
|
47 |
-
gr.Number(label="ph",
|
48 |
-
gr.Number(label="sulphates",
|
49 |
-
gr.Number(label="alcohol",
|
50 |
-
gr.Radio(["red", "white"], label="type",
|
51 |
],
|
52 |
outputs=gr.Number(label="quality"))
|
53 |
|
|
|
38 |
description="Predict the quality of a wine based on its features.",
|
39 |
allow_flagging="never",
|
40 |
inputs=[
|
41 |
+
gr.Number(label="fixed_acidity", value=7.293673375526557),
|
42 |
+
gr.Number(label="volatile_acidity", value=0.3),
|
43 |
+
gr.Number(label="citric_acid", value=0.31),
|
44 |
+
gr.Number(label="residual_sugar", value=2.2),
|
45 |
+
gr.Number(label="chlorides", value=0.036),
|
46 |
+
gr.Number(label="total_sulfur_dioxide", value=95.04095161413584),
|
47 |
+
gr.Number(label="ph", value=3.3185304801763884),
|
48 |
+
gr.Number(label="sulphates", value=0.6691971203117211),
|
49 |
+
gr.Number(label="alcohol", value=13.1),
|
50 |
+
gr.Radio(["red", "white"], label="type", value="white")
|
51 |
],
|
52 |
outputs=gr.Number(label="quality"))
|
53 |
|