mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 15:45:51 +00:00
9 lines
252 B
Python
9 lines
252 B
Python
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")
|