mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
|
from flask_wtf.file import FileField, FileRequired
|
||
|
from wtforms import StringField, ValidationError
|
||
|
from wtforms.validators import InputRequired, Length
|
||
|
from app.services import SERVICES
|
||
|
from ..forms import ContributionBaseForm, EditContributionBaseForm
|
||
|
|
||
|
|
||
|
class CreateSpaCyNLPPipelineModelForm(ContributionBaseForm):
|
||
|
spacy_model_file = FileField(
|
||
|
'File',
|
||
|
validators=[FileRequired()]
|
||
|
)
|
||
|
pipeline_name = StringField(
|
||
|
'Pipeline name',
|
||
|
validators=[InputRequired(), Length(max=64)]
|
||
|
)
|
||
|
|
||
|
def validate_spacy_model_file(self, field):
|
||
|
if not field.data.filename.lower().endswith('.tar.gz'):
|
||
|
raise ValidationError('.tar.gz files only!')
|
||
|
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
service_manifest = SERVICES['spacy-nlp-pipeline']
|
||
|
self.compatible_service_versions.choices = [('', 'Choose your option')]
|
||
|
self.compatible_service_versions.choices += [
|
||
|
(x, x) for x in service_manifest['versions'].keys()
|
||
|
]
|
||
|
self.compatible_service_versions.default = ''
|
||
|
|
||
|
|
||
|
class EditSpaCyNLPPipelineModelForm(EditContributionBaseForm):
|
||
|
pipeline_name = StringField(
|
||
|
'Pipeline name',
|
||
|
validators=[InputRequired(), Length(max=64)]
|
||
|
)
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super().__init__(*args, **kwargs)
|
||
|
service_manifest = SERVICES['spacy-nlp-pipeline']
|
||
|
self.compatible_service_versions.choices = [('', 'Choose your option')]
|
||
|
self.compatible_service_versions.choices += [
|
||
|
(x, x) for x in service_manifest['versions'].keys()
|
||
|
]
|
||
|
self.compatible_service_versions.default = ''
|