Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nopaque
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
SFB 1288 - INF
nopaque
Commits
81402d2d
Commit
81402d2d
authored
5 years ago
by
Stephan Porada
Browse files
Options
Downloads
Patches
Plain Diff
Add check_encoding to nlp jobs
parent
bb5f456e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/jobs/forms.py
+1
-0
1 addition, 0 deletions
app/jobs/forms.py
app/services/views.py
+6
-0
6 additions, 0 deletions
app/services/views.py
app/templates/services/nlp.html.j2
+12
-0
12 additions, 0 deletions
app/templates/services/nlp.html.j2
with
19 additions
and
0 deletions
app/jobs/forms.py
+
1
−
0
View file @
81402d2d
...
@@ -25,6 +25,7 @@ class AddNLPJobForm(FlaskForm):
...
@@ -25,6 +25,7 @@ class AddNLPJobForm(FlaskForm):
choices
=
[(
'
2.2.0
'
,
'
Latest (2.2.0)
'
),
choices
=
[(
'
2.2.0
'
,
'
Latest (2.2.0)
'
),
(
'
2.2.0
'
,
'
2.2.0
'
)],
(
'
2.2.0
'
,
'
2.2.0
'
)],
validators
=
[
DataRequired
()])
validators
=
[
DataRequired
()])
check_encoding
=
BooleanField
(
'
Check encoding
'
)
def
validate_files
(
form
,
field
):
def
validate_files
(
form
,
field
):
for
file
in
field
.
data
:
for
file
in
field
.
data
:
...
...
This diff is collapsed.
Click to expand it.
app/services/views.py
+
6
−
0
View file @
81402d2d
...
@@ -8,6 +8,7 @@ from werkzeug.utils import secure_filename
...
@@ -8,6 +8,7 @@ from werkzeug.utils import secure_filename
from
.
import
services
from
.
import
services
import
json
import
json
import
os
import
os
from
app
import
logger
SERVICES
=
{
'
corpus_analysis
'
:
{
'
name
'
:
'
Corpus analysis
'
},
SERVICES
=
{
'
corpus_analysis
'
:
{
'
name
'
:
'
Corpus analysis
'
},
...
@@ -36,7 +37,12 @@ def service(service):
...
@@ -36,7 +37,12 @@ def service(service):
return
make_response
(
add_job_form
.
errors
,
400
)
return
make_response
(
add_job_form
.
errors
,
400
)
service_args
=
[]
service_args
=
[]
if
service
==
'
nlp
'
:
if
service
==
'
nlp
'
:
logger
.
warning
(
add_job_form
.
check_encoding
)
service_args
.
append
(
'
-l {}
'
.
format
(
add_job_form
.
language
.
data
))
service_args
.
append
(
'
-l {}
'
.
format
(
add_job_form
.
language
.
data
))
logger
.
warning
(
"
Service args: {}
"
.
format
(
service_args
))
if
add_job_form
.
check_encoding
.
data
:
service_args
.
append
(
'
--check-encoding
'
)
logger
.
warning
(
"
Service args: {}
"
.
format
(
service_args
))
if
service
==
'
ocr
'
:
if
service
==
'
ocr
'
:
service_args
.
append
(
'
-l {}
'
.
format
(
add_job_form
.
language
.
data
))
service_args
.
append
(
'
-l {}
'
.
format
(
add_job_form
.
language
.
data
))
if
not
add_job_form
.
binarization
.
data
:
if
not
add_job_form
.
binarization
.
data
:
...
...
This diff is collapsed.
Click to expand it.
app/templates/services/nlp.html.j2
+
12
−
0
View file @
81402d2d
...
@@ -101,6 +101,18 @@
...
@@ -101,6 +101,18 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<span class="card-title">Check Encoding</span>
<p>If the input files are not created with the nopaque OCR service and you do not know if your tex files are UTF-8 encoded, check this switch. We will try to automatically determine the right encoding for your texts.</p>
<div class="switch">
<label>
{{ add_job_form.check_encoding() }}
<span class="lever"></span>
</label>
</div>
</div>
</div>
</div>
</div>
<div class="card-action right-align">
<div class="card-action right-align">
<button class="btn waves-effect waves-light" id="submit" name="submit" type="submit">Submit<i class="material-icons right">send</i></button>
<button class="btn waves-effect waves-light" id="submit" name="submit" type="submit">Submit<i class="material-icons right">send</i></button>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment