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

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

nlp - how find entities for each row of a big data?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.7k users

...