Spaces:
Runtime error
Runtime error
Mustafa Al Hamad commited on
Commit ·
64028ba
1
Parent(s): 1a1dab4
Update app.py
Browse files
app.py
CHANGED
|
@@ -153,7 +153,7 @@ with gr.Blocks() as demo:
|
|
| 153 |
baro = gr.Number(label='Barometer',interactive=True)
|
| 154 |
vis = gr.Number(label='Visibility',interactive=True)
|
| 155 |
with gr.Row():
|
| 156 |
-
temp = gr.
|
| 157 |
btn = gr.Button(value="Predict")
|
| 158 |
btn.click(predict, inputs=[city,month,year,day,hour,minute,weathertype,wind,hu,baro,vis], outputs=temp)
|
| 159 |
|
|
|
|
| 153 |
baro = gr.Number(label='Barometer',interactive=True)
|
| 154 |
vis = gr.Number(label='Visibility',interactive=True)
|
| 155 |
with gr.Row():
|
| 156 |
+
temp = gr.Textbox("😊😌Awaiting input😳🥵",label='Predicted temp',interactive=False)
|
| 157 |
btn = gr.Button(value="Predict")
|
| 158 |
btn.click(predict, inputs=[city,month,year,day,hour,minute,weathertype,wind,hu,baro,vis], outputs=temp)
|
| 159 |
|