Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Iobber
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Syntactic Tools
Chunking
Iobber
Commits
4500957d
Commit
4500957d
authored
Feb 22, 2013
by
Maciej Zawadzki
Browse files
Options
Downloads
Patches
Plain Diff
repair path to model-kpwr11-H
parent
47f5cb17
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README
+3
-3
3 additions, 3 deletions
README
iobber/iobber_txt.py
+2
-2
2 additions, 2 deletions
iobber/iobber_txt.py
with
5 additions
and
5 deletions
README
+
3
−
3
View file @
4500957d
...
@@ -41,8 +41,8 @@ The kpwr.ini config defines two layers:
...
@@ -41,8 +41,8 @@ The kpwr.ini config defines two layers:
chunk_vp.
chunk_vp.
There are two trained models distributed with IOBBER:
There are two trained models distributed with IOBBER:
* model-kpwr
04
-H: recognises chunks and their syntactic heads,
* model-kpwr
11
-H: recognises chunks and their syntactic heads,
* model-kpwr
04
: chunks but no heads.
* model-kpwr
11
: chunks but no heads.
NOTE: the current version of iobber is unable to recognise discontinuous chunks.
NOTE: the current version of iobber is unable to recognise discontinuous chunks.
Discontinuities, however, may be expressed in CCL format and this is likely to be
Discontinuities, however, may be expressed in CCL format and this is likely to be
...
@@ -56,7 +56,7 @@ files already annotated with named entities).
...
@@ -56,7 +56,7 @@ files already annotated with named entities).
Example call using the bundled model:
Example call using the bundled model:
iobber kpwr.ini -d model-kpwr
04
/ my_xces_input.xml -i xces -O ccl_chunked_output.xml
iobber kpwr.ini -d model-kpwr
11
/ my_xces_input.xml -i xces -O ccl_chunked_output.xml
This will read the given XCES-encoded file and produce CCL output. Note: the
This will read the given XCES-encoded file and produce CCL output. Note: the
kpwr.ini config assumes the input file has been morphosyntactically tagged and
kpwr.ini config assumes the input file has been morphosyntactically tagged and
...
...
This diff is collapsed.
Click to expand it.
iobber/iobber_txt.py
+
2
−
2
View file @
4500957d
...
@@ -71,8 +71,8 @@ def go():
...
@@ -71,8 +71,8 @@ def go():
dest
=
'
chunker_config
'
,
default
=
'
kpwr.ini
'
,
dest
=
'
chunker_config
'
,
default
=
'
kpwr.ini
'
,
help
=
'
use given chunker config (default: kpwr.ini)
'
)
help
=
'
use given chunker config (default: kpwr.ini)
'
)
parser
.
add_option
(
'
-C
'
,
'
--chunker-model
'
,
type
=
'
string
'
,
action
=
'
store
'
,
parser
.
add_option
(
'
-C
'
,
'
--chunker-model
'
,
type
=
'
string
'
,
action
=
'
store
'
,
dest
=
'
chunker_dir
'
,
default
=
'
model-kpwr
04
-H
'
,
dest
=
'
chunker_dir
'
,
default
=
'
model-kpwr
11
-H
'
,
help
=
'
read chunker trained model from the given dir (default: model-kpwr
04
-H)
'
)
help
=
'
read chunker trained model from the given dir (default: model-kpwr
11
-H)
'
)
parser
.
add_option
(
'
-w
'
,
'
--tagger-config
'
,
type
=
'
string
'
,
action
=
'
store
'
,
parser
.
add_option
(
'
-w
'
,
'
--tagger-config
'
,
type
=
'
string
'
,
action
=
'
store
'
,
dest
=
'
tagger_config
'
,
default
=
'
nkjp_s2.ini
'
,
dest
=
'
tagger_config
'
,
default
=
'
nkjp_s2.ini
'
,
help
=
'
use given tagger (wcrft) config (default: nkjp_s2.ini)
'
)
help
=
'
use given tagger (wcrft) config (default: nkjp_s2.ini)
'
)
...
...
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