upadated
Browse files
app.py
CHANGED
@@ -54,5 +54,11 @@ inputs = [
|
|
54 |
]
|
55 |
outputs = gr.Textbox(label="Flood Probability")
|
56 |
|
57 |
-
interface = gr.Interface(fn=predict, inputs=inputs, outputs=outputs,
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
interface.launch(share=True)
|
|
|
54 |
]
|
55 |
outputs = gr.Textbox(label="Flood Probability")
|
56 |
|
57 |
+
interface = gr.Interface(fn=predict, inputs=inputs, outputs=outputs,
|
58 |
+
examples = pd.DataFrame({
|
59 |
+
"MonsoonIntensity" :1
|
60 |
+
"TopographyDrainage":2
|
61 |
+
})
|
62 |
+
|
63 |
+
title="Flood Prediction Model")
|
64 |
interface.launch(share=True)
|