Sort Score
Result 10 results
Languages All
Labels All
Results 21 - 30 of 265 for

classified

(0.04 sec)
  1. Convert images with optical character recogniti...

    In this article, you will learn how to convert an image file to text or PDF using OCR with GroupDocs.Conversion for .NET.... Image file types are classified into vector image formats...

    docs.groupdocs.com/conversion/net/convert/image...
  2. Convert images with optical character recogniti...

    In this article, you will learn how to convert an image file to text or PDF using OCR with GroupDocs.Conversion for Java.... Image file types are classified into vector image formats...

    docs.groupdocs.com/conversion/java/convert/imag...
  3. Convert images | Documentation

    Learn this article and check how to convert JPG, PNG, TIFF and other images into various file formats with several lines of Java code... Image file types are classified into vector image formats...

    docs.groupdocs.com/conversion/nodejs-java/conve...
  4. Convert images | Documentation

    Learn this article and check how to convert JPG, PNG, TIFF and other images into various file formats with several lines of Java code... Image file types are classified into vector image formats...

    docs.groupdocs.com/conversion/java/convert/image/
  5. Convert images | Documentation

    In this article, you can learn how to convert JPG, PNG, TIFF and other images into various file formats with several lines of C# code... Image file types are classified into vector image formats...

    docs.groupdocs.com/conversion/net/convert/image/
  6. Archive

    archives...2020 · Shoaib Khan · 3 min Classify your Customer Feedback using...Muhammad Umar · 2 min Redact Classified Content from Documents using...

    blog.groupdocs.com/archives/
  7. 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....Basic Usage / Classify document by path Classify document by path...path Leave feedback Classify document by path with IAB-2 taxonomy...

    docs.groupdocs.com/classification/net/classify-...
  8. Classifier initialization | Documentation

    Initialization of Classifier class: var classifier = new Classifier(); Classifier class is thread-safe....Basic Usage / Classifier initialization Classifier initialization...Initialization of Classifier class: var classifier = new Classifier (); Classifier...

    docs.groupdocs.com/classification/net/classifie...
  9. 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....Guide / Basic Usage / Classify Raw Text Classify Raw Text Leave feedback...used. var response = classifier . Classify ( "Medicine is an important...

    docs.groupdocs.com/classification/net/classify-...
  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); }...Basic Usage / Classify document from stream Classify document from...from stream Leave feedback Classifying of the document from stream...

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