.NET Cloud SDK to communicate with classification REST API for automated classification of text and documents according to IAB-2, Documents, or Sentiment taxonomy.
Start Free TrialGroupDocs.Classification Cloud SDK for .NET enables you to classify your raw text as well as documents into predefined categories. Classification Cloud SDK supports multiple taxonomy types, such as IAB-2, Documents & Sentiment taxonomy. Classification information can be viewed regarding classes as well as their respective probabilities.
GroupDocs.Classification Cloud SDK for .NET performs classification based on four types of Taxonomies. The raw text or document classification is done as per IAB-2, Document, Sentiment, or Sentiment3 taxonomies. Following example shows how to classify raw text based on IAB-2 taxonomy using SDK:
var request = new ClassifyRequest(new BaseRequest()
{
Description = "Try Text classification"
},
"3");
// Get classification results
var response = apiInstance.Classify(request);
Debug.Print(response.ToString());