yamcha

Extract named entities and chunks from text using machine learning

brewmacoslinux
Try with needOr install directly
Source

About

NLP text chunker using Support Vector Machines

Commands

yamcha

Examples

extract people names and places from text$ echo 'John Smith visited Tokyo yesterday' | yamcha
chunk sentence into noun phrases and verb phrases$ yamcha < input.txt
use custom trained model for text analysis$ yamcha -m /path/to/model.txt < data.txt
process multiple files and save results$ yamcha < documents.txt > chunks.txt
identify sentence boundaries and word segments$ cat document.txt | yamcha | head -20