HomeSort by relevance Sort by last modified time
    Searched refs:Classifier (Results 1 - 22 of 22) sorted by null

  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
ResultsView.java 18 import org.tensorflow.demo.Classifier.Recognition;
Classifier.java 25 public interface Classifier {
27 * An immutable result returned by a Classifier describing what was recognized.
RecognitionScoreView.java 25 import org.tensorflow.demo.Classifier.Recognition;
DetectorActivity.java 102 private Classifier detector;
160 LOGGER.e("Exception initializing classifier!", e);
163 getApplicationContext(), "Classifier could not be initialized", Toast.LENGTH_SHORT);
289 final List<Classifier.Recognition> results = detector.recognizeImage(croppedBitmap);
312 final List<Classifier.Recognition> mappedRecognitions =
313 new LinkedList<Classifier.Recognition>();
315 for (final Classifier.Recognition result : results) {
ClassifierActivity.java 86 private Classifier classifier; field in class:ClassifierActivity
113 classifier =
166 final List<Classifier.Recognition> results = classifier.recognizeImage(croppedBitmap);
182 classifier.enableStatLogging(debug);
200 if (classifier != null) {
201 String statString = classifier.getStatString();
TensorFlowImageClassifier.java 33 /** A classifier specialized to label images using TensorFlow. */
34 public class TensorFlowImageClassifier implements Classifier {
74 public static Classifier create(
TensorFlowMultiBoxDetector.java 41 public class TensorFlowMultiBoxDetector implements Classifier {
79 public static Classifier create(
TensorFlowObjectDetectionAPIModel.java 40 public class TensorFlowObjectDetectionAPIModel implements Classifier {
71 public static Classifier create(
TensorFlowYoloDetector.java 31 public class TensorFlowYoloDetector implements Classifier {
90 public static Classifier create(
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/
ResultsView.java 19 import org.tensorflow.demo.Classifier.Recognition;
DetectorActivity.java 77 private Classifier detector;
118 LOGGER.e("Exception initializing classifier!", e);
121 getApplicationContext(), "Classifier could not be initialized", Toast.LENGTH_SHORT);
247 final List<Classifier.Recognition> results = detector.recognizeImage(croppedBitmap);
264 final List<Classifier.Recognition> mappedRecognitions =
265 new LinkedList<Classifier.Recognition>();
267 for (final Classifier.Recognition result : results) {
Classifier.java 25 public interface Classifier {
27 * An immutable result returned by a Classifier describing what was recognized.
RecognitionScoreView.java 25 import org.tensorflow.demo.Classifier.Recognition;
ClassifierActivity.java 77 private Classifier classifier; field in class:ClassifierActivity
102 classifier = TFLiteImageClassifier.create(getAssets(), MODEL_FILE, LABEL_FILE, INPUT_SIZE);
146 final List<Classifier.Recognition> results = classifier.recognizeImage(croppedBitmap);
162 classifier.enableStatLogging(debug);
180 if (classifier != null) {
181 String statString = classifier.getStatString();
TFLiteImageClassifier.java 39 /** A classifier specialized to label images using TensorFlow. */
40 public class TFLiteImageClassifier implements Classifier {
85 public static Classifier create(
TFLiteObjectDetectionAPIModel.java 44 public class TFLiteObjectDetectionAPIModel implements Classifier {
98 public static Classifier create(
  /external/fonttools/Lib/fontTools/misc/
classifyTools.py 7 class Classifier(object):
10 Main Classifier object, used to classify things into similar sets.
23 Add a set to the classifier. Any iterable is accepted.
65 Add a a list of sets to the classifier. Any iterable of iterables is accepted.
88 The return value belongs to the Classifier object and should NOT
89 be modified while the classifier is still in use.
97 The return value belongs to the Classifier object and should NOT
98 be modified while the classifier is still in use.
106 The return value belongs to the Classifier object and should NOT
107 be modified while the classifier is still in use
    [all...]
  /external/libnl/python/netlink/route/
tc.py 476 return Classifier(obj)
481 class Classifier(Tc):
482 """Classifier"""
503 return Classifier(obj)
530 buf = fmt.format(self.brief('classifier', nodev, noparent))
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/
MultiBoxTracker.java 34 import org.tensorflow.demo.Classifier.Recognition;
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/
MultiBoxTracker.java 34 import org.tensorflow.demo.Classifier.Recognition;
  /external/fonttools/Lib/fontTools/varLib/
merger.py 362 classifier = classifyTools.Classifier()
367 classifier.update(sets)
368 classes = classifier.getClasses()
  /external/kotlinc/lib/
kotlin-compiler.jar 

Completed in 615 milliseconds