Skip to content

Commit

Permalink
added more pre-trained taggers. German taggers. Experimental frame ta…
Browse files Browse the repository at this point in the history
…gger.
  • Loading branch information
aakbik committed Jul 13, 2018
1 parent d5506b9 commit 156d044
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/docs/TUTORIAL_BASICS.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ the word 'green'. This means that we've tagged this word as an entity of type co
sentence[4].add_tag('ner', 'color')

# print the sentence with all tags of this type
print(sentence.to_ner_string())
print(sentence.to_tagged_string())
```

This should print:
Expand Down
3 changes: 2 additions & 1 deletion resources/docs/TUTORIAL_TAGGING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ are provided (more coming):
| 'de-ner' | 4-class Named Entity Recognition | German | Conll-03 | **88.29** (F1) |
| 'de-ner-germeval' | 4+4-class Named Entity Recognition | German | Conll-03 | **84.53** (F1) |
| 'de-pos' | Part-of-Speech Tagging | German | Universal Dependency Treebank | **94.67** (Accuracy) |
.


So, if you want to use a `SequenceTagger` that performs PoS tagging, instantiate the tagger as follows:

```python
Expand Down

0 comments on commit 156d044

Please sign in to comment.