GroupDocs.Classification Cloud 20.5

Major Features

  • Support of the Chinese language was added to Sentiment taxonomy classification.

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
GDCLASS-58Support of the Chinese language for Sentiment taxonomyFeature

Public API and Backward Incompatible Changes

Classify Chinese text with the Sentiment taxonomy

Sentiment Analysis (Classification)


curl -X POST "https://api.groupdocs.cloud/v1.0/classification/classify?BestClassesCount=1&Taxonomy=sentiment" \
-H "accept: application/json" -H "Content-Type: application/json" \
-d "{ \"description\": \"\"}" -H "Authorization: Bearer [Access_token]"

{
  "bestClassName": "Positive",
  "bestClassProbability":88.59,
  "bestResults":[{
    "className":"Positive",
 "classProbability":88.59
  }],
  "Code":200,
  "status":"OK"
}