First approach on ranking

This commit is contained in:
2023-06-09 00:58:53 +02:00
parent ea8d928d42
commit 8a9c2f769c
5 changed files with 59 additions and 2 deletions

8
app/results/forms.py Normal file
View 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")