Update app.py
Browse files
app.py
CHANGED
@@ -36,10 +36,12 @@ def fazer_previsao(ODD_H, ODD_D, ODD_A):
|
|
36 |
# Criar uma interface Gradio
|
37 |
iface = gr.Interface(
|
38 |
fn=fazer_previsao,
|
39 |
-
inputs=["
|
|
|
|
|
40 |
outputs="text",
|
41 |
title="Previsão de Apostas",
|
42 |
-
description="Insira as
|
43 |
)
|
44 |
|
45 |
iface.launch()
|
|
|
36 |
# Criar uma interface Gradio
|
37 |
iface = gr.Interface(
|
38 |
fn=fazer_previsao,
|
39 |
+
inputs=[gr.Number(label="Odds para CASA vencer"),
|
40 |
+
gr.Number(label="Odds para EMPATE"),
|
41 |
+
gr.Number(label="Odds para VISITANTE")],
|
42 |
outputs="text",
|
43 |
title="Previsão de Apostas",
|
44 |
+
description="Insira as Odds e obtenha a previsao para entradas LayAway (CASA vence ou EMPATA) e LayHome (VISITANTE vence ou EMPATA)."
|
45 |
)
|
46 |
|
47 |
iface.launch()
|