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

groupdocs.classification

(0.05 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. Basic Usage | 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/basic-usage/
  3. Get taxonomies | Documentation

    Log taxonomy classes The list of taxanomy classes can be get like the following code snippet: Console.WriteLine(String.Join(" ", TaxonomyClasses.Iab2Classes)); Console.WriteLine(String.Join(" ", TaxonomyClasses.DocumentsClasses)); Console.WriteLine(String.Join(" ", TaxonomyClasses.SentimentClasses)); Console.WriteLine(String.Join(" ", TaxonomyClasses.Sentiment3Classes));...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/get-taxon...
  4. System requirements | Documentation

    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...
  5. Features Overview | Documentation

    Groupdocs.classification main feature is an ability to classify raw text and documents with IAB-2, Documents, Sentiment or Sentiment3 taxonomies. Sentiment Classification (Analysis) supports 4 languages: English, Chinese, Spanish, and German. Groupdocs.classification provides flexible set of settings to customize classification process: Name Description Default value bestClassesCount Select the number of results to return 1 taxonomy Select taxonomy (IAB-2, Documents, Sentiment or Sentiment3). Taxonomy.Iab2 precisionRecallBalance Select precision/recall balance for Documents taxonomy. If the classifier is not sure of the result, it will return Other class....Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/features-...
  6. Classify document from stream | Documentation

    Classifying of the document from stream could be performed with the next step Call Classify method for “stream” stream with Documents taxonomy and return 2 best results. Handle possible ApiException // Classify document from stream with Documents taxonomy and return 2 best resultstry { var response = classifier.Classify(stream, 2, Taxonomy.Documents); Console.WriteLine(response.BestClassName, response.BestClassProbability); } catch (ApiException e) { Console.WriteLine(e.Message); }...Redaction Product Solution GroupDocs.Classification Product Solution Purchase...GroupDocs Documentation / GroupDocs.Classification Product Family / GroupDocs...

    docs.groupdocs.com/classification/net/classify-...
  7. 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...
  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. 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-...