Spaces:
Runtime error
Runtime error
PranavPolavarapu
commited on
Commit
•
3b79f4e
1
Parent(s):
bf2950c
Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ estimator.fit(X, Y)
|
|
35 |
# Define the input component with 24 number inputs
|
36 |
inputs = []
|
37 |
for i in range(24):
|
38 |
-
inputs.append(gr.inputs.Number(label=df.columns[i]))
|
39 |
|
40 |
# Define the output component to show the predicted output
|
41 |
output = gr.outputs.Label(label="Output")
|
|
|
35 |
# Define the input component with 24 number inputs
|
36 |
inputs = []
|
37 |
for i in range(24):
|
38 |
+
inputs.append(gr.inputs.Number(label=df.columns[i],value=0).style(container=True))
|
39 |
|
40 |
# Define the output component to show the predicted output
|
41 |
output = gr.outputs.Label(label="Output")
|