Skip to content
Snippets Groups Projects
Commit 31f91aae authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix model selection

parent b4a9f81d
No related branches found
No related tags found
No related merge requests found
......@@ -69,16 +69,12 @@ class AddTesseractOCRPipelineJobForm(AddJobForm):
if 'binarization' in service_info['methods']:
if 'disabled' in self.binarization.render_kw:
del self.binarization.render_kw['disabled']
compatible_models = [
x for x in TesseractOCRModel.query.filter_by(shared=True).all()
if version in x.compatible_service_versions
]
compatible_models += [
x for x in TesseractOCRModel.query.filter_by(shared=False, user=current_user).all()
if version in x.compatible_service_versions
models = [
x for x in TesseractOCRModel.query.filter().all()
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
]
self.model.choices = [('', 'Choose your option')]
self.model.choices += [(x.hashid, x.title) for x in compatible_models]
self.model.choices += [(x.hashid, x.title) for x in models]
self.model.default = ''
self.version.choices = [(x, x) for x in service_manifest['versions']]
self.version.data = version
......@@ -115,8 +111,10 @@ class AddTranskribusHTRPipelineJobForm(AddJobForm):
if 'binarization' in service_info['methods']:
if 'disabled' in self.binarization.render_kw:
del self.binarization.render_kw['disabled']
models = TranskribusHTRModel.query.filter_by(shared=True).all()
models += TranskribusHTRModel.query.filter_by(shared=False, user=current_user).all()
models = [
x for x in TranskribusHTRModel.query.filter().all()
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
]
self.model.choices = [('', 'Choose your option')]
self.model.choices += [(x.hashid, x.transkribus_name) for x in models]
self.model.default = ''
......
......@@ -140,7 +140,11 @@ def tesseract_ocr_pipeline():
db.session.commit()
flash(f'Job "{job.title}" added', 'job')
return make_response({'redirect_url': url_for('jobs.job', job_id=job.id)}, 201) # noqa
tesseract_ocr_models = TesseractOCRModel.query.all()
tesseract_ocr_models = [
x for x in TesseractOCRModel.query.filter().all()
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
]
current_app.logger.warning(tesseract_ocr_models)
return render_template(
'services/tesseract_ocr_pipeline.html.j2',
form=form,
......@@ -204,8 +208,10 @@ def transkribus_htr_pipeline():
db.session.commit()
flash(f'Job "{job.title}" added', 'job')
return make_response({'redirect_url': url_for('jobs.job', job_id=job.id)}, 201) # noqa
transkribus_htr_models = TranskribusHTRModel.query.filter_by(shared=True).all()
transkribus_htr_models += TranskribusHTRModel.query.filter_by(shared=False, user=current_user).all()
transkribus_htr_models = [
x for x in TranskribusHTRModel.query.filter().all()
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
]
return render_template(
f'services/transkribus_htr_pipeline.html.j2',
form=form,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment