├── .gitignore ├── README.md ├── fig ├── architecture.png ├── model_fig.pdf ├── model_fig_1.pdf └── model_fig_1.svg ├── metrics └── span_f1.py ├── requirements_conda.txt ├── requirements_pip.txt └── vocabulary └── SoftDictHSCRF_vocabulary ├── non_padded_namespaces.txt ├── span_tags.txt ├── token_characters.txt ├── token_tags.txt └── tokens.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/README.md -------------------------------------------------------------------------------- /fig/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/fig/architecture.png -------------------------------------------------------------------------------- /fig/model_fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/fig/model_fig.pdf -------------------------------------------------------------------------------- /fig/model_fig_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/fig/model_fig_1.pdf -------------------------------------------------------------------------------- /fig/model_fig_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/fig/model_fig_1.svg -------------------------------------------------------------------------------- /metrics/span_f1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/metrics/span_f1.py -------------------------------------------------------------------------------- /requirements_conda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/requirements_conda.txt -------------------------------------------------------------------------------- /requirements_pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/requirements_pip.txt -------------------------------------------------------------------------------- /vocabulary/SoftDictHSCRF_vocabulary/non_padded_namespaces.txt: -------------------------------------------------------------------------------- 1 | *labels 2 | *tags 3 | -------------------------------------------------------------------------------- /vocabulary/SoftDictHSCRF_vocabulary/span_tags.txt: -------------------------------------------------------------------------------- 1 | PER 2 | ORG 3 | LOC 4 | MISC 5 | O 6 | -------------------------------------------------------------------------------- /vocabulary/SoftDictHSCRF_vocabulary/token_characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/vocabulary/SoftDictHSCRF_vocabulary/token_characters.txt -------------------------------------------------------------------------------- /vocabulary/SoftDictHSCRF_vocabulary/token_tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/vocabulary/SoftDictHSCRF_vocabulary/token_tags.txt -------------------------------------------------------------------------------- /vocabulary/SoftDictHSCRF_vocabulary/tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyutyuh/gazetteer-NER-acl19/HEAD/vocabulary/SoftDictHSCRF_vocabulary/tokens.txt --------------------------------------------------------------------------------