GroupDocs.Classification-Cloud
20.11.0
See the version list below for details.
dotnet add package GroupDocs.Classification-Cloud --version 20.11.0
NuGet\Install-Package GroupDocs.Classification-Cloud -Version 20.11.0
<PackageReference Include="GroupDocs.Classification-Cloud" Version="20.11.0" />
paket add GroupDocs.Classification-Cloud --version 20.11.0
#r "nuget: GroupDocs.Classification-Cloud, 20.11.0"
// Install GroupDocs.Classification-Cloud as a Cake Addin #addin nuget:?package=GroupDocs.Classification-Cloud&version=20.11.0 // Install GroupDocs.Classification-Cloud as a Cake Tool #tool nuget:?package=GroupDocs.Classification-Cloud&version=20.11.0
Data Classification .NET Cloud REST API
Home | Product Page | Docs | Demo | API Reference | Examples | Blog | Free Support | Free Trial
This cloud REST API enables your C#, ASP.NET & other .NET apps to perform classification of raw text & documents. Supports IAB-2 & Documents taxonomies.
Classification Processing Features
- Perform raw text classification.
- Perform document classification for the supported file formats.
Supported Document Formats
Microsoft Word: DOC, DOCX, DOCM, DOT, DOTX, DOTM OpenOffice: ODT, OTT Portable: PDF Text: RTF, TXT
Supported IAB-2 Taxonomy
'Automotive', 'Books_and_Literature', 'Business_and_Finance', 'Careers', 'Education', 'Events_and_Attractions', 'Family_and_Relationships', 'Fine_Art', 'Food_&Drink', 'Healthy_Living', 'Hobbies&Interests', 'Home&Garden', 'Medical_Health', 'Movies', 'Music_and_Audio', 'News_and_Politics', 'Personal_Finance', 'Pets', 'Pop_Culture', 'Real_Estate', 'Religion&Spirituality', 'Science', 'Shopping', 'Sports', 'Style&Fashion', 'Technology&_Computing', 'Television', 'Travel', 'Video_Gaming'
Supported Documents Taxonomy
ADVE - advertisements, brochures. Email Form Letter Memo - memorandums. News - articles, including news articles. Invoice Report Resume Scientific - scientific papers. Other - the other classes of documents or cases where the classifier is not sure.
Supported Setiment Taxonomy
Binary sentiment classification. Positive class probability can also be interpreted as the main result of classification.
- Negative
- Positive
Supported Setiment3 Taxonomy
3-classes sentiment classification:
- Negative
- Neutral
- Positive
Get Started
You do not need to install anything to get started with GroupDocs.Classification Cloud SDK for .Net. Just create an account at GroupDocs for Cloud and get your application information.
Simply execute Install-Package GroupDocs.Classification-Cloud
from Package Manager Console in Visual Studio to fetch & reference GroupDocs.Classification assembly in your project. If you already have GroupDocs.Classification Cloud SDK for .Net and want to upgrade it, please execute Update-Package GroupDocs.Classification-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Perform Text Classification using C# Code
// for complete examples, please visit https://github.com/groupdocs-classification-cloud/groupdocs-classification-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
string MyClientId = "MY-CLIENT-ID";
string MyClientSecret = "MY-CLIENT-SECRET";
// Create instance of the API
var configuration = new Configuration {
ClientId = MyClientId,
ClientSecret = MyClientSecret
};
var apiInstance = new ClassificationApi(configuration);
// Create request
var request = new ClassifyRequest(new BaseRequest {
Description = "Try Text classification"
}, "3");
// Get classification results for text.
var response = apiInstance.Classify(request);
Console.WriteLine(response.ToString());
Home | Product Page | Docs | Demo | API Reference | Examples | Blog | Free Support | Free Trial
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.6 is compatible. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
- Newtonsoft.Json (>= 10.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.