I am a beginner in NLP and first time using StanfordNERTagger. For learning purpose I am playing with Stanford NERTagger. I have a python list of country name
['France', 'India', 'Bangladesh', 'England', 'Germany', 'Brazil', 'Egypt', 'Bhutan', 'Srilanka']
I want to get 'location' entity which belongs to NERTagger but i am getting the 'Organization' Entity
[('France', 'ORGANIZATION'), ('India', 'ORGANIZATION'), ('Bangladesh', 'ORGANIZATION'), ('England', 'ORGANIZATION'), ('Germany', 'ORGANIZATION'), ('Brazil', 'ORGANIZATION'), ('Egypt', 'ORGANIZATION'), ('Bhutan', 'ORGANIZATION'), ('Srilanka', 'ORGANIZATION')]
May be i am missing something here