NuMind API is ready

List of labels:

POSITIVE,NEGATIVE

Playground:


Results:


Entry points:

POST http://numind.id-tree.com/predict
  - data: a single string
    response: {"text":str,"predicted":str,
                 probabilities:{"labelA":double,"labelB":double,...}
              }
    ex: curl -d "mytext" -X POST http://numind.id-tree.com/predict

  - data: a JSON Array of strings
    response: [
                 {"text":str,"predicted":str,
                   probabilities:{"labelA":double,"labelB":double,...}
                 },
                 ...
              ]
    ex: curl -d '["text1", "text2"]' -X POST http://numind.id-tree.com/predict

GET  http://numind.id-tree.com/predict?text=my%20dtext%20durlencoded
  - argument: text = an url encoded string
    response: {"text":str,"predicted":str,
                 probabilities:{"labelA":double,"labelB":double,...}
              }
    ex: curl "http://numind.id-tree.com/predict?text=myexample"