Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript Verbs Detection

Tags:

javascript

nlp

I've the following problem. I need to find verbs in a string using JavaScript. I would like to know, if there is something like (JAWS), the Java API for Wordnet, but for JavaScript.

More specifically, i'm searching for some kind of RESTful webservice able to return the list of verbs in a text or webpage.

If you know something useful, please don't hesitate to post your answers.

like image 788
user278064 Avatar asked Aug 28 '11 20:08

user278064


1 Answers

Have a look at the Natural Language Processing APIs. They seem to have an API. There is even a service for larger amounts of requests (has a free plan as well).

It is based on simple POST requests and returns JSON, so it would be easy to use in JavaScript.

like image 184
Reto Aebersold Avatar answered Sep 23 '22 19:09

Reto Aebersold