Sort Score
Result 10 results
Languages All
Labels All
Results 51 - 60 of 3,983 for

groupdocs.classification

(0.03 sec)
  1. Installation | GroupDocs

    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...
  2. Evaluation Limitations and Licensing | GroupDocs

    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...
  3. Classifier initialization | GroupDocs

    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...
  4. Developer Guide | GroupDocs

    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...
  5. Product Overview | GroupDocs

    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...
  6. How to Run Examples | GroupDocs

    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...
  7. Supported Document Formats | GroupDocs

    The following table indicates the file formats that Groupdocs.classification for .NET can process. Format Description PDF Adobe Portable Document Format (PDF) DOC Microsoft Word 97-2003 Document DOCM Microsoft Word Macro-Enabled Document DOCX Microsoft Word Document DOT Microsoft Word 97-2003 Template DOTM Microsoft Word Macro-Enabled Template DOTX Microsoft Word Template ODT OpenDocument Text OTT Open Document Text Template RTF Rich Text Document TXT Plain Text Document Tip Can’t find your file format?...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/supported...
  8. System requirements | GroupDocs

    Overview To produce and manipulate the documents, the machine that Groupdocs.classification for .NET runs on doesn’t need to have Adobe Acrobat, Microsoft Office or OpenOffice installed: Groupdocs.classification for .NET has their own document processing engine. The machine that Groupdocs.classification for .NET runs on doesn’t need to have Adobe Acrobat, Microsoft Office or OpenOffice installed: Groupdocs.classification for .NET has their own document processing engine. Supported Operating System Windows Microsoft Windows 2000 Professional (x64) Microsoft Windows 2000 Server (x64) Microsoft Windows 2003 Server (x64) Microsoft Windows 2008 Server (x64) Microsoft Windows 2012 Server (x64) Microsoft Windows 2012 R2 Server (x64) Microsoft Windows 2016 Server (x64) Microsoft Windows 2019 Server (x64) Microsoft Windows Vista (x64) Microsoft Windows XP (x64) Microsoft Windows 7 (x64) Microsoft Windows 8, 8....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/system-re...
  9. Basic Usage | GroupDocs

    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/basic-usage/
  10. Sentiment classification usage | GroupDocs

    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...