Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
Manage
Activity
Members
Labels
Plan
Issues
20
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
combo
Commits
e6eb721f
Commit
e6eb721f
authored
2 years ago
by
piotrmp
Browse files
Options
Downloads
Patches
Plain Diff
Command-line options for LAMBO segmentation.
parent
39a9c9f8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#6331
failed with stage
Stage:
in 5 minutes and 48 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
combo/main.py
+3
-3
3 additions, 3 deletions
combo/main.py
combo/predict.py
+1
-1
1 addition, 1 deletion
combo/predict.py
with
4 additions
and
4 deletions
combo/main.py
+
3
−
3
View file @
e6eb721f
...
...
@@ -88,8 +88,8 @@ flags.DEFINE_boolean(name="silent", default=True,
flags
.
DEFINE_enum
(
name
=
"
predictor_name
"
,
default
=
"
combo-spacy
"
,
enum_values
=
[
"
combo
"
,
"
combo-spacy
"
,
"
combo-lambo
"
],
help
=
"
Use predictor with whitespace, spacy or LAMBO tokenizer.
"
)
flags
.
DEFINE_string
(
name
=
"
lambo_model_name
"
,
default
=
"
en
"
,
help
=
"
LAMBO model name (if LAMBO used for segmentation).
"
)
#
flags.DEFINE_string(name="lambo_model_name", default="en",
#
help="LAMBO model name (if LAMBO used for segmentation).")
def
run
(
_
):
"""
Run model.
"""
...
...
@@ -176,7 +176,7 @@ def _get_predictor() -> predictors.Predictor:
)
return
predictors
.
Predictor
.
from_archive
(
archive
,
FLAGS
.
predictor_name
,
"
validation
"
,
True
,
{
"
lambo_model_name
"
:
FLAGS
.
lambo_model_name
}
archive
,
FLAGS
.
predictor_name
#
,
extra_args=
{"lambo_model_name" : FLAGS.lambo_model_name}
)
...
...
This diff is collapsed.
Click to expand it.
combo/predict.py
+
1
−
1
View file @
e6eb721f
...
...
@@ -238,7 +238,7 @@ class COMBO(predictor.Predictor):
@classmethod
def
with_lambo_tokenizer
(
cls
,
model
:
models
.
Model
,
dataset_reader
:
allen_data
.
DatasetReader
,
lambo_model_name
:
str
):
dataset_reader
:
allen_data
.
DatasetReader
,
lambo_model_name
:
str
=
'
en
'
):
return
cls
(
model
,
dataset_reader
,
lambo
.
LamboTokenizer
(
lambo_model_name
))
@classmethod
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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