Skip to content

Commit

Permalink
Internal changes only
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 322554869
  • Loading branch information
tensorflower-gardener authored and tflite-support-robot committed Jul 22, 2020
1 parent 1872c3b commit 81b6d0e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions tensorflow_lite_support/cc/task/vision/image_classifier.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ namespace vision {
// An example of such model can be found at:
// https://tfhub.dev/bohemian-visual-recognition-alliance/lite-model/models/mushroom-identification_v1/1
//
// A CLI demo is available at `examples/vision/desktop/image_classifier_demo.cc`
// and provides example usage.
// A CLI demo tool is available for easily trying out this API, and provides
// example usage. See:
// examples/task/vision/desktop/image_classifier_demo.cc
class ImageClassifier : public BaseVisionTaskApi<ClassificationResult> {
public:
using BaseVisionTaskApi::BaseVisionTaskApi;
Expand Down
5 changes: 3 additions & 2 deletions tensorflow_lite_support/cc/task/vision/image_segmenter.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ namespace vision {
// An example of such model can be found at:
// https://tfhub.dev/tensorflow/lite-model/deeplabv3/1/metadata/1
//
// A CLI demo is available at `examples/vision/desktop/image_segmenter_demo.cc`
// and provides example usage.
// A CLI demo tool is available for easily trying out this API, and provides
// example usage. See:
// examples/task/vision/desktop/image_segmenter_demo.cc
class ImageSegmenter : public BaseVisionTaskApi<SegmentationResult> {
public:
using BaseVisionTaskApi::BaseVisionTaskApi;
Expand Down
5 changes: 3 additions & 2 deletions tensorflow_lite_support/cc/task/vision/object_detector.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ namespace vision {
// An example of such model can be found at:
// https://tfhub.dev/google/lite-model/object_detection/mobile_object_localizer_v1/1/metadata/1
//
// A CLI demo is available at `examples/vision/desktop/object_detector_demo.cc`
// and provides example usage.
// A CLI demo tool is available for easily trying out this API, and provides
// example usage. See:
// examples/task/vision/desktop/object_detector_demo.cc
class ObjectDetector : public BaseVisionTaskApi<DetectionResult> {
public:
using BaseVisionTaskApi::BaseVisionTaskApi;
Expand Down

0 comments on commit 81b6d0e

Please sign in to comment.