Named Entity Recognition (NER)
While researching on how to cluster some document contents together in an ML pipeline for a pet project, I came across NER (Named Entity Recognition). Apparently, it’s a technique in NLP which can be used to identify named entities like persons, places, date, organizations, etc. Learn more about it on wikipedia.
In python you can use libraries like spaCy, BERT, etc to do this or you can also use LLM to extract this info as shown here.