This is a small wrapper / client for the natural language processing API's found at text-processing.com.
The website provides 4 API's:
- Stemming and Lemmatization API
- Sentiment Analysis API
- Tagging and Chunk Extraction API
- Phrase Extraction and Named Entity Recognition API
The original API is documented at: http://text-processing.com/docs/index.html
API documented at: http://text-processing.com/docs/phrases.html
Status: Not implemented yet
API documented at: http://text-processing.com/docs/phrases.html
Status: Not implemented yet
API documented at: http://text-processing.com/docs/phrases.html
Status: Not implemented yet
API documented at: http://text-processing.com/docs/phrases.html
This example comes from phrase_test.go
:
result, err := ExtractPhrase("John hit the ball.")
Then result
contains:
map[
DATE:[ball]
PERSON:[John]
VP:[hit]
LOCATION:[John]
]
The MIT License (MIT). Please see the LICENSE
file for more information.