Skip to content

Commit

Permalink
change to underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
imgarylai committed Dec 5, 2018
1 parent e0f7b64 commit 3a6f85a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions docs/documentation/decode_webapi.rst
Expand Up @@ -27,11 +27,11 @@ tokenization, named entity recognition, part-of-speech tagging , morphological a
'He is the founder of the ELIT project.'
models = [
{'model': 'elit-tok-lexrule-en'},
{'model': 'elit-ner-bilstm-en-ontonotes'},
{'model': 'elit-pos-bilstm-en-mixed'},
{'model': 'elit-morph-lexrule-en'},
{'model': 'uw-coref-e2e-en-ontonotes'}]
{'model': 'elit_tok_lexrule_en'},
{'model': 'elit_ner_bilstm_en_ontonotes'},
{'model': 'elit_pos_bilstm_en_mixed'},
{'model': 'elit_morph_lexrule_en'},
{'model': 'uw_coref_e2e_en_ontonotes'}]
request = {'input': doc, 'models': models}
r = requests.post(url, json=request)
Expand Down
22 changes: 11 additions & 11 deletions docs/documentation/english_models.md
Expand Up @@ -11,24 +11,24 @@

| Model ID |
|----------|
| [elit-tok-space-un](../tools/tokenization.html#space-tokenizer) |
| [elit-tok-lexrule-en](../tools/tokenization.html#english-tokenizer) |
| [elit_tok_space_un](../tools/tokenization.html#space-tokenizer) |
| [elit_tok_lexrule_en](../tools/tokenization.html#english-tokenizer) |


## Morphological Analysis

| Model ID | PRE |
|----------|:---:|
| [elit-morph-idprule-en](../tools/morphological_analysis.html#english-analyzer) | [✳-pos-✳-en-inmixed](#part-of-speech-tagging) |
| [elit_morph_idprule_en](../tools/morphological_analysis.html#english-analyzer) | [✳-pos-✳-en-inmixed](#part-of-speech-tagging) |


## Part-of-Speech Tagging

| Model ID | PRE | DATA | EVAL | BM |
|----------|:---:|:----:|:----:|:--:|
| [elit-pos-cnn-en-mixed](../tools/part_of_speech_tagging.html#cnn-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.xx | |
| [elit-pos-rnn-en-mixed](../tools/part_of_speech_tagging.html#rnn-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.xx | |
| [elit-pos-flair-en-mixed](../tools/part_of_speech_tagging.html#flair-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.80 | 97.72 |
| [elit_pos_cnn_en_mixed](../tools/part_of_speech_tagging.html#cnn-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.xx | |
| [elit_pos_rnn_en_mixed](../tools/part_of_speech_tagging.html#rnn-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.xx | |
| [elit_pos_flair_en_mixed](../tools/part_of_speech_tagging.html#flair-tagger) | [tokseg](#tokenization) | [Mixed](english_datasets.html#mixed) | 97.80 | 97.72 |

* EVAL: accuracy.
* BM: accuracy on the Wall Street Journal portion of the [Penn Treebank](https://catalog.ldc.upenn.edu/ldc99t42) using the standard split (trn: 0-18; dev: 19-21; tst: 22-24).
Expand All @@ -38,9 +38,9 @@

| Model ID | PRE | DATA | EVAL | BM |
|----------|:---:|:----:|:----:|:--:|
| [elit-ner-cnn-en-ontonotes](../tools/named_entity_recognition.html#cnn-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 87.xx | |
| [elit-ner-rnn-en-ontonotes](../tools/named_entity_recognition.html#rnn-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 86.xx | |
| [elit-ner-flair-en-ontonotes](../tools/named_entity_recognition.html#flair-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 88.75 | 92.74 |
| [elit_ner_cnn_en_ontonotes](../tools/named_entity_recognition.html#cnn-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 87.xx | |
| [elit_ner_rnn_en_ontonotes](../tools/named_entity_recognition.html#rnn-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 86.xx | |
| [elit_ner_flair_en_ontonotes](../tools/named_entity_recognition.html#flair-tagger) | [tokseg](#tokenization) | [OntoNotes](english_datasets.html#ontonotes) | 88.75 | 92.74 |

* EVAL: F1-score.
* BM: F1-score on the English dataset distributed by the [CoNLL'03 shared task](https://www.clips.uantwerpen.be/conll2003/ner/).
Expand All @@ -50,7 +50,7 @@

| Model ID | PRE | DATA | EVAL | BM |
|----------|:---:|:----:|:----:|:--:|
| [elit-dep-biaffine-en-mixed](../tools/dependency_parsing.html#biaffine-parser) | [✳-pos-✳-en-inmixed](#part-of-speech-tagging) | [Mixed](english_datasets.html#mixed) | 92.26/91.03 | 96.08/95.02 |
| [elit_dep_biaffine_en_mixed](../tools/dependency_parsing.html#biaffine-parser) | [✳-pos-✳-en-inmixed](#part-of-speech-tagging) | [Mixed](english_datasets.html#mixed) | 92.26/91.03 | 96.08/95.02 |

* EVAL: UAS (unlabeled attachment score) / LAS (labeled attachment score).
* BM: UAS/LAS on the Wall Street Journal portion of the [Penn Treebank](https://catalog.ldc.upenn.edu/ldc99t42) using the standard split (trn: 2-21; dev: 22, 24; tst: 23)
Expand All @@ -61,7 +61,7 @@ and the [Stanford typed dependencies](https://nlp.stanford.edu/software/stanford

| Model ID | PRE | DATA | EVAL |
|----------|:---:|:----:|:----:|
| [uw-coref-e2e-en-ontonotes](../tools/coreference_resolution.html#end-to-end-system) | [tokseg](#tokenization) | [CoNLL12](http://conll.cemantix.org/2012/) | 80.4/70.8/67.6 |
| [uw_coref_e2e_en_ontonotes](../tools/coreference_resolution.html#end-to-end-system) | [tokseg](#tokenization) | [CoNLL12](http://conll.cemantix.org/2012/) | 80.4/70.8/67.6 |

* EVAL: F1-scores of MUC/B3/CEAF.
* CoNLL12: the English dataset distributed by the [CoNLL'12 shared task](http://conll.cemantix.org/2012/).
Expand Down

0 comments on commit 3a6f85a

Please sign in to comment.