Javascript Verb Detection

I have 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.

In particular, I'm looking for some kind of RESTful web service capable of returning a list of verbs in text or a web page.

If you know something useful, please feel free to post your answers.

+6
source share
1 answer

Check out the Natural Language Processing API . They seem to have an API . There is even a service for more requests (also has a free plan).

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

+7
source

Source: https://habr.com/ru/post/896092/


All Articles