setup.py
src/tensorflow_examples/__init__.py
src/tensorflow_examples/lite/__init__.py
src/tensorflow_examples/lite/model_maker/__init__.py
src/tensorflow_examples/lite/model_maker/cli/__init__.py
src/tensorflow_examples/lite/model_maker/cli/cli.py
src/tensorflow_examples/lite/model_maker/core/__init__.py
src/tensorflow_examples/lite/model_maker/core/compat.py
src/tensorflow_examples/lite/model_maker/core/export_format.py
src/tensorflow_examples/lite/model_maker/core/file_util.py
src/tensorflow_examples/lite/model_maker/core/test_util.py
src/tensorflow_examples/lite/model_maker/core/data_util/__init__.py
src/tensorflow_examples/lite/model_maker/core/data_util/audio_dataloader.py
src/tensorflow_examples/lite/model_maker/core/data_util/data_util.py
src/tensorflow_examples/lite/model_maker/core/data_util/dataloader.py
src/tensorflow_examples/lite/model_maker/core/data_util/image_dataloader.py
src/tensorflow_examples/lite/model_maker/core/data_util/object_detector_dataloader.py
src/tensorflow_examples/lite/model_maker/core/data_util/recommendation_dataloader.py
src/tensorflow_examples/lite/model_maker/core/data_util/recommendation_testutil.py
src/tensorflow_examples/lite/model_maker/core/data_util/text_dataloader.py
src/tensorflow_examples/lite/model_maker/core/optimization/__init__.py
src/tensorflow_examples/lite/model_maker/core/optimization/warmup.py
src/tensorflow_examples/lite/model_maker/core/task/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/audio_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/classification_model.py
src/tensorflow_examples/lite/model_maker/core/task/configs.py
src/tensorflow_examples/lite/model_maker/core/task/custom_model.py
src/tensorflow_examples/lite/model_maker/core/task/hub_loader.py
src/tensorflow_examples/lite/model_maker/core/task/image_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/image_preprocessing.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writer_for_image_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/model_util.py
src/tensorflow_examples/lite/model_maker/core/task/object_detector.py
src/tensorflow_examples/lite/model_maker/core/task/question_answer.py
src/tensorflow_examples/lite/model_maker/core/task/recommendation.py
src/tensorflow_examples/lite/model_maker/core/task/text_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/train_image_classifier_lib.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/metadata_writer.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/metadata_writer_for_bert.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/question_answerer/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/question_answerer/metadata_writer_for_bert_question_answerer.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/text_classifier/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/bert/text_classifier/metadata_writer_for_bert_text_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/text_classifier/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/metadata_writers/text_classifier/metadata_writer_for_text_classifier.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/__init__.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/audio_spec.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/image_spec.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/object_detector_spec.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/recommendation_spec.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/text_spec.py
src/tensorflow_examples/lite/model_maker/core/task/model_spec/util.py
src/tensorflow_examples/lite/model_maker/demo/__init__.py
src/tensorflow_examples/lite/model_maker/demo/audio_classification_demo.py
src/tensorflow_examples/lite/model_maker/demo/custom_model_demo.py
src/tensorflow_examples/lite/model_maker/demo/image_classification_demo.py
src/tensorflow_examples/lite/model_maker/demo/question_answer_demo.py
src/tensorflow_examples/lite/model_maker/demo/recommendation_demo.py
src/tensorflow_examples/lite/model_maker/demo/text_classification_demo.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/coco_metric.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataloader.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/det_model_fn.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/efficientdet_arch.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/hparams_config.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/inference.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/iou_utils.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/main.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/model_inspect.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/nms_np.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/tensorrt.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/utils.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/aug/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/aug/autoaugment.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/aug/gridmask.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/aug/mosaic.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/backbone/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/backbone/backbone_factory.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/backbone/efficientnet_builder.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/backbone/efficientnet_lite_builder.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/backbone/efficientnet_model.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/create_coco_tfrecord.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/create_pascal_tfrecord.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/inspect_tfrecords.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/label_map_util.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/dataset/tfrecord_util.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/anchors.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/efficientdet_keras.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/eval.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/eval_tflite.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/fpn_configs.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/infer.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/inference.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/inspector.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/label_util.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/postprocess.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/segmentation.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/tfmot.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/train.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/train_lib.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/util_keras.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/keras/wbf.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/argmax_matcher.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/box_coder.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/box_list.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/faster_rcnn_box_coder.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/matcher.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/preprocessor.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/region_similarity_calculator.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/shape_utils.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/target_assigner.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/object_detection/tf_example_decoder.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/visualize/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/visualize/shape_utils.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/visualize/standard_fields.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/visualize/static_shape.py
src/tensorflow_examples/lite/model_maker/third_party/efficientdet/visualize/vis_utils.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/data/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/data/example_generation_movielens.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/__init__.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/keras_layers.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/keras_losses.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/keras_metrics.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/recommendation_model.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/recommendation_model_launcher_keras.py
src/tensorflow_examples/lite/model_maker/third_party/recommendation/ml/model/utils.py
src/tflite_model_maker/__init__.py
src/tflite_model_maker.egg-info/PKG-INFO
src/tflite_model_maker.egg-info/SOURCES.txt
src/tflite_model_maker.egg-info/dependency_links.txt
src/tflite_model_maker.egg-info/entry_points.txt
src/tflite_model_maker.egg-info/requires.txt
src/tflite_model_maker.egg-info/top_level.txt
src/tflite_model_maker/cli/__init__.py
src/tflite_model_maker/cli/cli.py
src/tflite_model_maker/core/__init__.py
src/tflite_model_maker/core/compat.py
src/tflite_model_maker/core/export_format.py
src/tflite_model_maker/core/file_util.py
src/tflite_model_maker/core/test_util.py
src/tflite_model_maker/core/data_util/__init__.py
src/tflite_model_maker/core/data_util/audio_dataloader.py
src/tflite_model_maker/core/data_util/data_util.py
src/tflite_model_maker/core/data_util/dataloader.py
src/tflite_model_maker/core/data_util/image_dataloader.py
src/tflite_model_maker/core/data_util/object_detector_dataloader.py
src/tflite_model_maker/core/data_util/recommendation_dataloader.py
src/tflite_model_maker/core/data_util/recommendation_testutil.py
src/tflite_model_maker/core/data_util/text_dataloader.py
src/tflite_model_maker/core/optimization/__init__.py
src/tflite_model_maker/core/optimization/warmup.py
src/tflite_model_maker/core/task/__init__.py
src/tflite_model_maker/core/task/audio_classifier.py
src/tflite_model_maker/core/task/classification_model.py
src/tflite_model_maker/core/task/configs.py
src/tflite_model_maker/core/task/custom_model.py
src/tflite_model_maker/core/task/hub_loader.py
src/tflite_model_maker/core/task/image_classifier.py
src/tflite_model_maker/core/task/image_preprocessing.py
src/tflite_model_maker/core/task/metadata_writer_for_image_classifier.py
src/tflite_model_maker/core/task/model_util.py
src/tflite_model_maker/core/task/object_detector.py
src/tflite_model_maker/core/task/question_answer.py
src/tflite_model_maker/core/task/recommendation.py
src/tflite_model_maker/core/task/text_classifier.py
src/tflite_model_maker/core/task/train_image_classifier_lib.py
src/tflite_model_maker/core/task/metadata_writers/__init__.py
src/tflite_model_maker/core/task/metadata_writers/metadata_writer.py
src/tflite_model_maker/core/task/metadata_writers/bert/__init__.py
src/tflite_model_maker/core/task/metadata_writers/bert/metadata_writer_for_bert.py
src/tflite_model_maker/core/task/metadata_writers/bert/question_answerer/__init__.py
src/tflite_model_maker/core/task/metadata_writers/bert/question_answerer/metadata_writer_for_bert_question_answerer.py
src/tflite_model_maker/core/task/metadata_writers/bert/text_classifier/__init__.py
src/tflite_model_maker/core/task/metadata_writers/bert/text_classifier/metadata_writer_for_bert_text_classifier.py
src/tflite_model_maker/core/task/metadata_writers/text_classifier/__init__.py
src/tflite_model_maker/core/task/metadata_writers/text_classifier/metadata_writer_for_text_classifier.py
src/tflite_model_maker/core/task/model_spec/__init__.py
src/tflite_model_maker/core/task/model_spec/audio_spec.py
src/tflite_model_maker/core/task/model_spec/image_spec.py
src/tflite_model_maker/core/task/model_spec/object_detector_spec.py
src/tflite_model_maker/core/task/model_spec/recommendation_spec.py
src/tflite_model_maker/core/task/model_spec/text_spec.py
src/tflite_model_maker/core/task/model_spec/util.py
src/tflite_model_maker/demo/__init__.py
src/tflite_model_maker/demo/audio_classification_demo.py
src/tflite_model_maker/demo/custom_model_demo.py
src/tflite_model_maker/demo/image_classification_demo.py
src/tflite_model_maker/demo/question_answer_demo.py
src/tflite_model_maker/demo/recommendation_demo.py
src/tflite_model_maker/demo/text_classification_demo.py
src/tflite_model_maker/third_party/efficientdet/__init__.py
src/tflite_model_maker/third_party/efficientdet/coco_metric.py
src/tflite_model_maker/third_party/efficientdet/dataloader.py
src/tflite_model_maker/third_party/efficientdet/det_model_fn.py
src/tflite_model_maker/third_party/efficientdet/efficientdet_arch.py
src/tflite_model_maker/third_party/efficientdet/hparams_config.py
src/tflite_model_maker/third_party/efficientdet/inference.py
src/tflite_model_maker/third_party/efficientdet/iou_utils.py
src/tflite_model_maker/third_party/efficientdet/main.py
src/tflite_model_maker/third_party/efficientdet/model_inspect.py
src/tflite_model_maker/third_party/efficientdet/nms_np.py
src/tflite_model_maker/third_party/efficientdet/tensorrt.py
src/tflite_model_maker/third_party/efficientdet/utils.py
src/tflite_model_maker/third_party/efficientdet/aug/__init__.py
src/tflite_model_maker/third_party/efficientdet/aug/autoaugment.py
src/tflite_model_maker/third_party/efficientdet/aug/gridmask.py
src/tflite_model_maker/third_party/efficientdet/aug/mosaic.py
src/tflite_model_maker/third_party/efficientdet/backbone/__init__.py
src/tflite_model_maker/third_party/efficientdet/backbone/backbone_factory.py
src/tflite_model_maker/third_party/efficientdet/backbone/efficientnet_builder.py
src/tflite_model_maker/third_party/efficientdet/backbone/efficientnet_lite_builder.py
src/tflite_model_maker/third_party/efficientdet/backbone/efficientnet_model.py
src/tflite_model_maker/third_party/efficientdet/dataset/__init__.py
src/tflite_model_maker/third_party/efficientdet/dataset/create_coco_tfrecord.py
src/tflite_model_maker/third_party/efficientdet/dataset/create_pascal_tfrecord.py
src/tflite_model_maker/third_party/efficientdet/dataset/inspect_tfrecords.py
src/tflite_model_maker/third_party/efficientdet/dataset/label_map_util.py
src/tflite_model_maker/third_party/efficientdet/dataset/tfrecord_util.py
src/tflite_model_maker/third_party/efficientdet/keras/__init__.py
src/tflite_model_maker/third_party/efficientdet/keras/anchors.py
src/tflite_model_maker/third_party/efficientdet/keras/efficientdet_keras.py
src/tflite_model_maker/third_party/efficientdet/keras/eval.py
src/tflite_model_maker/third_party/efficientdet/keras/eval_tflite.py
src/tflite_model_maker/third_party/efficientdet/keras/fpn_configs.py
src/tflite_model_maker/third_party/efficientdet/keras/infer.py
src/tflite_model_maker/third_party/efficientdet/keras/inference.py
src/tflite_model_maker/third_party/efficientdet/keras/inspector.py
src/tflite_model_maker/third_party/efficientdet/keras/label_util.py
src/tflite_model_maker/third_party/efficientdet/keras/postprocess.py
src/tflite_model_maker/third_party/efficientdet/keras/segmentation.py
src/tflite_model_maker/third_party/efficientdet/keras/tfmot.py
src/tflite_model_maker/third_party/efficientdet/keras/train.py
src/tflite_model_maker/third_party/efficientdet/keras/train_lib.py
src/tflite_model_maker/third_party/efficientdet/keras/util_keras.py
src/tflite_model_maker/third_party/efficientdet/keras/wbf.py
src/tflite_model_maker/third_party/efficientdet/object_detection/__init__.py
src/tflite_model_maker/third_party/efficientdet/object_detection/argmax_matcher.py
src/tflite_model_maker/third_party/efficientdet/object_detection/box_coder.py
src/tflite_model_maker/third_party/efficientdet/object_detection/box_list.py
src/tflite_model_maker/third_party/efficientdet/object_detection/faster_rcnn_box_coder.py
src/tflite_model_maker/third_party/efficientdet/object_detection/matcher.py
src/tflite_model_maker/third_party/efficientdet/object_detection/preprocessor.py
src/tflite_model_maker/third_party/efficientdet/object_detection/region_similarity_calculator.py
src/tflite_model_maker/third_party/efficientdet/object_detection/shape_utils.py
src/tflite_model_maker/third_party/efficientdet/object_detection/target_assigner.py
src/tflite_model_maker/third_party/efficientdet/object_detection/tf_example_decoder.py
src/tflite_model_maker/third_party/efficientdet/visualize/__init__.py
src/tflite_model_maker/third_party/efficientdet/visualize/shape_utils.py
src/tflite_model_maker/third_party/efficientdet/visualize/standard_fields.py
src/tflite_model_maker/third_party/efficientdet/visualize/static_shape.py
src/tflite_model_maker/third_party/efficientdet/visualize/vis_utils.py
src/tflite_model_maker/third_party/recommendation/ml/data/__init__.py
src/tflite_model_maker/third_party/recommendation/ml/data/example_generation_movielens.py
src/tflite_model_maker/third_party/recommendation/ml/model/__init__.py
src/tflite_model_maker/third_party/recommendation/ml/model/keras_layers.py
src/tflite_model_maker/third_party/recommendation/ml/model/keras_losses.py
src/tflite_model_maker/third_party/recommendation/ml/model/keras_metrics.py
src/tflite_model_maker/third_party/recommendation/ml/model/recommendation_model.py
src/tflite_model_maker/third_party/recommendation/ml/model/recommendation_model_launcher_keras.py
src/tflite_model_maker/third_party/recommendation/ml/model/utils.py