Update requirements

This commit is contained in:
2024-03-12 14:24:03 +01:00
parent 94cb2a0617
commit 152c59dbbb
4 changed files with 18 additions and 13 deletions

View File

@@ -1,27 +1,27 @@
from beflask.models import Benchmark, db, User
from beflask import app
_, app = app.create_app()
app = app.create_app()
with app.app_context():
db.drop_all()
db.create_all()
b = Benchmark(
name="discretizbench",
folder="/Users/rmontanana/Code/discretizbench",
folder="/home/rmontanana/Code/discretizbench",
description="Experiments with local discretization and Bayesian "
"classifiers",
)
db.session.add(b)
b = Benchmark(
name="odtebench",
folder="/Users/rmontanana/Code/odtebench",
folder="/home/rmontanana/Code/odtebench",
description="Experiments with STree and Ensemble classifiers",
)
db.session.add(b)
b = Benchmark(
name="covbench",
folder="/Users/rmontanana/Code/covbench",
folder="/home/rmontanana/Code/covbench",
description="Experiments with COVID-19 dataset",
)
db.session.add(b)