TwitterNER
Twitter named entity extraction for WNUT 2016 http://noisy-text.github.io/2016/ner-shared-task.html and the corresponding workshop paper at WNUT COLING 2016, titled Semi-supervised Named Entity Recognition in noisy-text by Shubhanshu Mishra and Jana Diesner
Please cite as:
@inproceedings{mishra-diesner-2016-semi,
title = "Semi-supervised Named Entity Recognition in noisy-text",
author = "Mishra, Shubhanshu and
Diesner, Jana",
booktitle = "Proceedings of the 2nd Workshop on Noisy User-generated Text ({WNUT})",
month = dec,
year = "2016",
address = "Osaka, Japan",
publisher = "The COLING 2016 Organizing Committee",
url = "https://aclanthology.org/W16-3927",
pages = "203--212",
}
Installation
pip install -r requirements.txt
cd data
wget http://nlp.stanford.edu/data/glove.twitter.27B.zip
unzip glove.twitter.27B.zip
cd ..
Usage
$ cd NoisyNLP
$ python
>>> from run_ner import TwitterNER
>>> from twokenize import tokenizeRawTweetText
>>> ner = TwitterNER()
>>> tweet = "Beautiful day in Chicago! Nice to get away from the Florida heat."
>>> tokens = tokenizeRawTweetText(tweet)
>>> ner.get_entities(tokens)
[(3, 4, 'LOCATION'), (11, 12, 'LOCATION')]
>>> " ".join(tokens[3:4])
'Chicago'
>>> " ".join(tokens[11:12])
'Florida'
Data download
The dataset used in this repository can bs downloaded from https://github.com/aritter/twitter_nlp/tree/master/data/annotated/wnut16
Submitted Solution [ST]
See Word2Vec.ipynb
for details on the original submitted solution for the task.
Improved model
See Run Experiments.ipynb
for the details on the improved system.
See Run Experiment.ipynb
for the details on the improved system with test data.
Using the API
The final system is packaged as an API specified in the folder NoisyNLP. More updates will be made to the API in upcoming days.
See Run Experiment.ipynb
for API usage.
Downloading Gazetteers
See Updated Gazetteers.ipynb
, Extra Gazetteers.ipynb
, Download Wikidata.ipynb
Generating word clusters
See Gen new clusters.ipynb
Data Pre-processing
See Data preprocessing.ipynb
Preliminary comparison with RNN models
See KerasCharRNN.ipynb
, and KerasWordRNN.ipynb
Acknowledgements
- George Cooper - Making the model available as a python library.