Sort Score
Result 10 results
Languages All
Labels All
Results 31 - 40 of 3,379 for

groupdocs.classification

(0.03 sec)
  1. Product Overview | Documentation

    Note Welcome to Groupdocs.classification for .NET Groupdocs.classification is a .NET component built to allow developers to classify texts and documents, whether simple or complex. It allows developers to use three different taxonomies: IAB (version 2), that created by the Interactive Advertising Bureau, Documents taxonomy, that created by Aspose and simple Sentiment taxonomy (Negative/Positive). For the Sentiment taxonomy Chinese language is supported. Product Description Groupdocs.classification is a robust .NET component that lets developers to analyze text and documents without using any document-related tool to open documents or extract text....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/product-o...
  2. Installation | Documentation

    Install from Nuget NuGet is the easiest way to download and install Groupdocs.classification for .NET. There are ways to install it in your project. Install via Package Manager GUI Follow these steps to reference Groupdocs.classification using Package Manager GUI: Open your solution/project in Visual Studio. Click Tools > NuGet Package Manager > Manage NuGet Packages for Solution. You can also access the same option through the Solution Explorer. Right-click the solution or project and select Manage NuGet Packages from the context menu Select Browse tab and type “GroupDocs....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/installat...
  3. Getting Started | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/getting-s...
  4. Evaluation Limitations and Licensing | Document...

    Evaluation Limitations You can easily download Groupdocs.classification for evaluation. The evaluation download is the same as the purchased download. The evaluation version simply becomes licensed when you add a few lines of code to apply the license. You will face following limitations while using the API without the license: Texts with more than 200 characters are not supported. Documents with more than 200 characters are not supported. For the sentiment classification this limitations are 100 for English and 30 Chinese....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/evaluatio...
  5. Classifier initialization | Documentation

    Initialization of Classifier class: var classifier = new Classifier(); Classifier class is thread-safe....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/classifie...
  6. Taxonomies | Documentation

    Taxonomy Taxonomy (general)is the practice and science of classification of things or concepts, including the principles that underlie such classification. In our case, this is a list of text categories. We support two taxonomies for now: IAB-2 taxonomy IAB-2 taxonomy: https://www.iab.com/guidelines/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 Documents taxonomy Documents taxonomy:...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/taxonomies/
  7. How to Run Examples | Documentation

    Software Requirements Please make sure you meet the following requirements before downloading and running the examples. Visual Studio 2013 or higher NuGet Package Manager installed in Visual Studio. Make sure that latest NuGet API version is installed in Visual Studio. For details on how to install NuGet package manager please check http://docs.nuget.org/ndocs/guides/install-nuget Go to Tools->Options->NuGet Package Manager->Package Sources and make sure that the option nuget.org is checked Example project uses NuGet Automatic Package Restore feature therefore you should have an active internet connection....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/how-to-ru...
  8. Developer Guide | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/developer...
  9. Classify document by path | Documentation

    Classify document by path with IAB-2 taxonomy and return 2 best results Classifying of the document could be performed with the next steps Call Classify method for “document.pdf” file in the current (".") directory with IAB-2 taxonomy and return 2 best results. Handle possible ApiException try { var response = classifier.Classify("document.pdf", ".", 3, Taxonomy.Iab2); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); } Precisely classify document by path with Documents taxonomy and return 4 best results Call Classify method for “document....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  10. Sentiment classification usage | Documentation

    Create an instance of SentimentClassifier class. It is multilingual and supports English, Chinese, Spanish, and German. Creates SentimentClassifier instance var sentimentClassifier = new SentimentClassifier(); and call PositiveProbability method Classifies sentiment by text var positiveProbability = sentimentClassifier.PositiveProbability("This is a new must-have thing."); Console.WriteLine($"The probability of a positive sentiment is { positiveProbability }"); or call Classify method Classifies sentiment by text var response = sentimentClassifier.Classify("This is a new must-have thing."); Console.WriteLine($"The best class name:{response....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/sentiment...