Commit
·
fe8a048
1
Parent(s):
bd739ae
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
inputs = [
|
4 |
+
gr.inputs.Number(label="Probability of storm", min_value=0.0, max_value=1.0),
|
5 |
+
gr.inputs.Number(label="Probability of model sensitivity", min_value=0.0, max_value=1.0),
|
6 |
+
gr.inputs.Number(label="Probability of model specificity", min_value=0.0, max_value=1.0),
|
7 |
+
gr.inputs.Number(label="Probability of chance of botrytis", min_value=0.0, max_value=1.0),
|
8 |
+
gr.inputs.Number(label="Probability of high sugar", min_value=0
|