giseldo commited on
Commit
6237464
·
1 Parent(s): 4984926

ultima versao

Browse files
Files changed (2) hide show
  1. README.md +8 -1
  2. app.py +1 -1
README.md CHANGED
@@ -10,4 +10,11 @@ pinned: false
10
  license: other
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
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"),