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

groupdocs.classification

(0.18 sec)
  1. 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...
  2. 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-...
  3. 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...
  4. 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-...
  5. 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...
  6. 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/
  7. 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...
  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 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-...
  10. 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...