mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-15 23:25:51 +00:00
11 lines
329 B
Python
11 lines
329 B
Python
from flask_wtf import FlaskForm
|
|
from wtforms import SubmitField, SelectField, TextAreaField
|
|
from benchmark.Arguments import ALL_METRICS
|
|
|
|
|
|
# ----- NOT USED ----- #
|
|
class RankingForm(FlaskForm):
|
|
score = SelectField("Score", choices=ALL_METRICS)
|
|
output = TextAreaField("Output")
|
|
submit = SubmitField("Generate Ranking")
|