Sort Score
Result 10 results
Languages All
Labels All
Results 181 - 190 of 5,157 for

groupdocs.classification

(0.1 sec)
  1. Taxonomies

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....GroupDocs.Classification for .NET allows you to classify document...are going to launch GroupDocs.Classification API for .NET platform...

    blog.groupdocs.com/tag/taxonomies/
  2. 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...
  3. 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/
  4. 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...
  5. Demos

    View, Convert, Inspect, Watermark or Parse common file formats from Microsoft Office, Visio, Project, OpenOffice, AutoCAD, PDL, 3D & images...( Demo | Source ) GroupDocs.Classification Product Family GroupDocs...

    demos.groupdocs.com
  6. On Premise Document Manipulation APIs | GroupDocs

    Get document manipulation APIs including viewer, comparison, conversion, annotation, watermark, e-signature, assembly, parser, editor & classification....Java Releases | Maven GroupDocs.Classification Product Family GroupDocs...

    releases.groupdocs.com/
  7. On Premise Document Manipulation APIs | GroupDocs

    Get document manipulation APIs including viewer, comparison, conversion, annotation, watermark, e-signature, assembly, parser, editor & classification....Java Releases | Maven GroupDocs.Classification Product Family GroupDocs...

    releases.groupdocs.com/
  8. On Premise Document Manipulation APIs | GroupDocs

    Get document manipulation APIs including viewer, comparison, conversion, annotation, watermark, e-signature, assembly, parser, editor & classification....Java Releases | Maven GroupDocs.Classification Product Family GroupDocs...

    releases.groupdocs.com/
  9. 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...
  10. 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-...