Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
combo
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
combo
Merge requests
!9
Enhanced dependency parsing develop to master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Enhanced dependency parsing develop to master
develop
into
master
Overview
0
Commits
19
Pipelines
0
Changes
1
Merged
Enhanced dependency parsing develop to master
Mateusz Klimaszewski
requested to merge
develop
into
master
Jan 3, 2021
Overview
0
Commits
19
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
51be6680
Prev
Next
Show latest version
1 file
+
21
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
51be6680
Add documentation EUD model training.
· 51be6680
Mateusz Klimaszewski
authored
Dec 11, 2020
docs/training.md
+
21
−
1
View file @ 51be6680
Edit in single-file editor
Open in Web IDE
Show full file
@@ -43,7 +43,27 @@ Examples (for clarity without training/validation data paths):
```bash
combo --mode train --targets head,deprel --features token,char,upostag
```
## Enhanced UD
Training a model with Enhanced UD prediction
**requires**
data pre-processing.
```
bash
combo
--mode
train
\
--training_data_path
your_preprocessed_training_path
\
--validation_data_path
your_preprocessed_validation_path
\
--targets
feats,upostag,xpostag,head,deprel,lemma,deps
\
--config_path
config.graph.template.jsonnet
```
### Data pre-processing
Download data from
[
IWPT20 Shared Task
](
https://universaldependencies.org/iwpt20/data.html
)
.
It contains
`enhanced_collapse_empty_nodes.pl`
script which is required as pre-processing step.
Apply this script to training and validation data.
```
bash
perl enhanced_collapse_empty_nodes.pl training.conllu
>
training.fixed.conllu
```
## Configuration
### Advanced
Loading