Sort Score
Result 10 results
Languages All
Labels All
Results 31 - 40 of 3,375 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. 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...
  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. Supported Document Formats | Documentation

    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. 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-...
  9. 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...
  10. Classify Raw Text | Documentation

    Simple IAB-2 text classification Call Classify method with a text as the first parameter to perform classification. Default taxonomy (IAB-2) and bestClassesCount (1) will be used. var response = classifier.Classify("Medicine is an important part of our lifes"); Console.WriteLine(response.BestClassName, response.BestClassProbability); Raw text classification with Documents taxonomy and 2 best classes to return Taxonomy, bestClassesCount and precisionRecallBalance could also be specified: var response = classifier.Classify("Medicine is an important part of our lifes", 2, Taxonomy....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/classify-...