Merge branch 'dev' of git.kemt.fei.tuke.sk:vf585mz/BP2024 into dev

This commit is contained in:
vladimir.ferko 2024-04-13 11:51:54 +02:00
commit 8297a6bbb1
4 changed files with 8 additions and 7 deletions

View File

@ -11,5 +11,5 @@ ENV SECRET_KEY="random_secret_key"
EXPOSE 5050
# CMD ["python3", "app.py"]
ENTRYPOINT ["tail", "-f", "/dev/null"]
CMD ["gunicorn", "--bind","0.0.0.0:5050","app:app"]
#ENTRYPOINT ["tail", "-f", "/dev/null"]

View File

@ -15,11 +15,10 @@ if __name__ == '__main__':
try:
with open(os.path.join('dataset', 'final_id_v2.jsonl'), encoding='utf-8') as file:
data = [json.loads(line) for line in file]
for line in file:
data = json.loads(line)
db.session.add(Samples(data['text']))
for sample in data:
db.session.add(Samples(sample['text']))
db.session.commit()
print('Data sucessfully inserted')
except FileNotFoundError as err:

View File

@ -33,7 +33,7 @@ class Samples(db.Model):
__tablename__ = 'samples'
_id = db.Column("id", db.Integer, primary_key=True)
text = db.Column(db.String(512), nullable=False)
text = db.Column(db.Text, nullable=False)
annotations = db.relationship('Annotations', lazy=True, backref='sample') # corrected relationship and added backref
def __init__(self, text):

View File

@ -11,3 +11,5 @@ SQLAlchemy==2.0.28
typing_extensions==4.10.0
Werkzeug==3.0.1
zipp==3.18.1
psycopg2-binary
gunicorn