NER model for lyrics[rap]

74 Views Asked by At

I am looking for any NER model train to extract entity from rap lyrics. Presently I am using Spacy models for NER, but there's a lot of misclassification. This is because spacy models are pretrained on newspaper articles. So, the initial question; Is there any model that I can use for NER on rap lyrics.

This is how the present spacy model classifying some of the words

('kanye west', 'GPE'),('2pac', 'PRODUCT'),('hoochie coochie', 'ORG'),('valley', 'LOC'),('talkin', 'NORP'),('nothin', 'PERSON'),('100k', 'PRODUCT')

(In case if u are wondering what lyrics are these, these are from Kendrick Lamar)

1

There are 1 best solutions below

2
On

You may need to generate your own training data, as the words you are trying to classify are very specific to the American rap industry, and most probably not covered by any existing nlp package.