├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── base_extractors.py ├── brown_paths ├── README.paths ├── empty └── gha.250M-c2000.paths ├── datasets ├── RC_2013-04.1000.json ├── README.datasets ├── ritter.ner.conll ├── test.json └── wnut_2015_test.conll ├── er.py ├── requirements.txt ├── run_tagger.py ├── setup.py ├── tools ├── conlleval.pl └── sents_to_conll.py ├── train_tagger.py └── wnut ├── wnut_usfd_code ├── add-bos-eos.py ├── experiment.sh ├── extract-features.py ├── gaz.py ├── io-to-bio.py ├── langmodel.50000 ├── lm-tuning.py ├── neighbours.py ├── ritner-weighted.model ├── shapes-and-lengths.py ├── subgrams.py ├── twocolumn-to-spacesep-nolabels.py └── weighted.model └── wnut_usfd_paper ├── acl2015.sty ├── aclabbrv.bst ├── usfd_wnut.bib ├── usfd_wnut_system.pdf └── usfd_wnut_system.tex /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | __all__ = ['er'] 4 | -------------------------------------------------------------------------------- /base_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/base_extractors.py -------------------------------------------------------------------------------- /brown_paths/README.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/brown_paths/README.paths -------------------------------------------------------------------------------- /brown_paths/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /brown_paths/gha.250M-c2000.paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/brown_paths/gha.250M-c2000.paths -------------------------------------------------------------------------------- /datasets/RC_2013-04.1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/datasets/RC_2013-04.1000.json -------------------------------------------------------------------------------- /datasets/README.datasets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/datasets/README.datasets -------------------------------------------------------------------------------- /datasets/ritter.ner.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/datasets/ritter.ner.conll -------------------------------------------------------------------------------- /datasets/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/datasets/test.json -------------------------------------------------------------------------------- /datasets/wnut_2015_test.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/datasets/wnut_2015_test.conll -------------------------------------------------------------------------------- /er.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/er.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/run_tagger.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/setup.py -------------------------------------------------------------------------------- /tools/conlleval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/tools/conlleval.pl -------------------------------------------------------------------------------- /tools/sents_to_conll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/tools/sents_to_conll.py -------------------------------------------------------------------------------- /train_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/train_tagger.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/add-bos-eos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/add-bos-eos.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/experiment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/experiment.sh -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/extract-features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/extract-features.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/gaz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/gaz.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/io-to-bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/io-to-bio.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/langmodel.50000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/langmodel.50000 -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/lm-tuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/lm-tuning.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/neighbours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/neighbours.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/ritner-weighted.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/ritner-weighted.model -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/shapes-and-lengths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/shapes-and-lengths.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/subgrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/subgrams.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/twocolumn-to-spacesep-nolabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/twocolumn-to-spacesep-nolabels.py -------------------------------------------------------------------------------- /wnut/wnut_usfd_code/weighted.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_code/weighted.model -------------------------------------------------------------------------------- /wnut/wnut_usfd_paper/acl2015.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_paper/acl2015.sty -------------------------------------------------------------------------------- /wnut/wnut_usfd_paper/aclabbrv.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_paper/aclabbrv.bst -------------------------------------------------------------------------------- /wnut/wnut_usfd_paper/usfd_wnut.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_paper/usfd_wnut.bib -------------------------------------------------------------------------------- /wnut/wnut_usfd_paper/usfd_wnut_system.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_paper/usfd_wnut_system.pdf -------------------------------------------------------------------------------- /wnut/wnut_usfd_paper/usfd_wnut_system.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leondz/entity_recognition/HEAD/wnut/wnut_usfd_paper/usfd_wnut_system.tex --------------------------------------------------------------------------------