Spaces:
Running
Running
ultima versao
Browse files
README.md
CHANGED
@@ -10,4 +10,11 @@ pinned: false
|
|
10 |
license: other
|
11 |
---
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
license: other
|
11 |
---
|
12 |
|
13 |
+
# NEOSP
|
14 |
+
NEOSP lets you use a preditive model to estimate issues from title and description.
|
15 |
+
The solution was developed as part of a phd thesis project at UFCG in 2023.
|
16 |
+
In the future maybe we will code without estimating.
|
17 |
+
|
18 |
+
|
19 |
+
|
20 |
+
|
app.py
CHANGED
@@ -160,7 +160,7 @@ def calcula(titulo, descricao, nome_projeto):
|
|
160 |
demo = gr.Interface(fn=calcula,
|
161 |
inputs=[gr.Textbox(placeholder="Título", label="Título"),
|
162 |
gr.Textbox(lines=10, placeholder="Descrição", label="Descrição"),
|
163 |
-
gr.Dropdown(["ALOY", "TIMOB", "XD"], label="Projeto", value= "ALOY")], # info="Nome do projeto!"
|
164 |
outputs=[gr.Textbox(label="Story Points Estimado Média"),
|
165 |
gr.Textbox(label="Story Points Estimado Mediana"),
|
166 |
gr.Textbox(label="Story Points Estimado NEOSP-SVR"),
|
|
|
160 |
demo = gr.Interface(fn=calcula,
|
161 |
inputs=[gr.Textbox(placeholder="Título", label="Título"),
|
162 |
gr.Textbox(lines=10, placeholder="Descrição", label="Descrição"),
|
163 |
+
gr.Dropdown(["ALOY", "APSTUD", "TIMOB", "XD"], label="Projeto", value= "ALOY")], # info="Nome do projeto!"
|
164 |
outputs=[gr.Textbox(label="Story Points Estimado Média"),
|
165 |
gr.Textbox(label="Story Points Estimado Mediana"),
|
166 |
gr.Textbox(label="Story Points Estimado NEOSP-SVR"),
|