Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I havs a million of rows. in each row there is a job title with some explanation. I want to remove entities from each job title with entities recognition. I am wondering how I can do that with NLTK? it is very easy in spacy . It is just like the following:

ents=[str(ent) for ent in data.ents if not ent.label_ in [str('ORG'), str('PERSON')]]

I just removed 2 label of entities. I can't use spacy now because it has limit on letters. could you tell me how I can do the same in NLTK?

question from:https://stackoverflow.com/questions/65880540/how-find-entities-for-each-row-of-a-big-data

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...