mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-18 00:25:51 +00:00
First approach on ranking
This commit is contained in:
8
app/results/forms.py
Normal file
8
app/results/forms.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from flask_wtf import FlaskForm
|
||||
from wtforms import SubmitField, SelectField
|
||||
from benchmark.Arguments import ALL_METRICS
|
||||
|
||||
|
||||
class RankingForm(FlaskForm):
|
||||
score = SelectField("Score", choices=ALL_METRICS)
|
||||
submit = SubmitField("Generate Ranking")
|
Reference in New Issue
Block a user