mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-16 23:55:52 +00:00
11 lines
325 B
Python
11 lines
325 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")
|