简体   繁体   中英

How to recognize names from a text using php

I want to extract name(firstnames and lastnames) from a text using php. Example: From text below I want to extract names(in this case Aline Wright and Jesse Wright)

Aline Wright is a cancer survivor, amputee and a newlywed. Wednesday night she began to show signs she was having a stroke.

"I started feeling some left arm numbness and a facial droop," said Aline.

"It appeared to me that I was probably having a stroke."

That's when her husband of four days, Jesse Wright, put her in the car and rushed her to the Erlanger Medical Center. Wright knows an emergency. He is a nurse technician at Erlanger.

If you want to do named entity recognition (NER) using PHP, you'll need to either call out to an external NER package or make use of an online natural language processing API .

APIs

NLP API are listed below. Complexity Intelligence and Alchemy API will probably be moderately easier to use for beginners than OpenCalais.

NER Packages

A few software packages you can use for NER are:

Of these, Stanford CoreNLP is probably a good place to start. Similar to many NLP APIs, it provides a complete processing pipeline for common tasks such as NER.

I'd use a named entity recognizer. There are many of these up on CPAN where there is an active linguistics community.

Then, in PHP , do something like:

$result = \`perl named_entity_recogniser.pl "myText"\`;

I wrote this PHP extension but be prepared to compile from source. https://github.com/rjjakes/MITIE-PHP

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM