├── .gitignore ├── LICENSE ├── MobileNet-SSD-TPU-async.py ├── MobileNet-SSD-TPU-sync.py ├── README.md ├── coco_labels.txt ├── colaboratory └── gpu │ ├── collabo.zip │ ├── constants.sh │ ├── convert_checkpoint_to_edgetpu_tflite.sh │ ├── object_detection_evaluation.py │ ├── pipeline_mobilenet_v1_ssd_retrain_last_few_layers.config │ ├── pipeline_mobilenet_v1_ssd_retrain_whole_model.config │ ├── pipeline_mobilenet_v2_ssd_retrain_last_few_layers.config │ ├── pipeline_mobilenet_v2_ssd_retrain_whole_model.config │ ├── pipeline_mobilenet_v2_ssdlite_retrain_last_few_layers.config │ ├── prepare_checkpoint_and_dataset.sh │ ├── protoc_update.sh │ ├── retrain_detection_model.sh │ └── tpu_transfer_learning.py ├── media ├── .gitkeep ├── 01.gif ├── 02.gif ├── 03.gif └── 04.jpg ├── mobilenet_ssd_v1_coco_quant_postprocess_edgetpu.tflite ├── mobilenet_ssd_v1_voc_quant_postprocess_edgetpu.tflite ├── mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite ├── mobilenet_ssd_v2_voc_quant_postprocess_edgetpu.tflite └── voc_labels.txt /.gitignore: -------------------------------------------------------------------------------- 1 | _*.* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/LICENSE -------------------------------------------------------------------------------- /MobileNet-SSD-TPU-async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/MobileNet-SSD-TPU-async.py -------------------------------------------------------------------------------- /MobileNet-SSD-TPU-sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/MobileNet-SSD-TPU-sync.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/README.md -------------------------------------------------------------------------------- /coco_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/coco_labels.txt -------------------------------------------------------------------------------- /colaboratory/gpu/collabo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/collabo.zip -------------------------------------------------------------------------------- /colaboratory/gpu/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/constants.sh -------------------------------------------------------------------------------- /colaboratory/gpu/convert_checkpoint_to_edgetpu_tflite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/convert_checkpoint_to_edgetpu_tflite.sh -------------------------------------------------------------------------------- /colaboratory/gpu/object_detection_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/object_detection_evaluation.py -------------------------------------------------------------------------------- /colaboratory/gpu/pipeline_mobilenet_v1_ssd_retrain_last_few_layers.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/pipeline_mobilenet_v1_ssd_retrain_last_few_layers.config -------------------------------------------------------------------------------- /colaboratory/gpu/pipeline_mobilenet_v1_ssd_retrain_whole_model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/pipeline_mobilenet_v1_ssd_retrain_whole_model.config -------------------------------------------------------------------------------- /colaboratory/gpu/pipeline_mobilenet_v2_ssd_retrain_last_few_layers.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/pipeline_mobilenet_v2_ssd_retrain_last_few_layers.config -------------------------------------------------------------------------------- /colaboratory/gpu/pipeline_mobilenet_v2_ssd_retrain_whole_model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/pipeline_mobilenet_v2_ssd_retrain_whole_model.config -------------------------------------------------------------------------------- /colaboratory/gpu/pipeline_mobilenet_v2_ssdlite_retrain_last_few_layers.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/pipeline_mobilenet_v2_ssdlite_retrain_last_few_layers.config -------------------------------------------------------------------------------- /colaboratory/gpu/prepare_checkpoint_and_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/prepare_checkpoint_and_dataset.sh -------------------------------------------------------------------------------- /colaboratory/gpu/protoc_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/protoc_update.sh -------------------------------------------------------------------------------- /colaboratory/gpu/retrain_detection_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/retrain_detection_model.sh -------------------------------------------------------------------------------- /colaboratory/gpu/tpu_transfer_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/colaboratory/gpu/tpu_transfer_learning.py -------------------------------------------------------------------------------- /media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/media/01.gif -------------------------------------------------------------------------------- /media/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/media/02.gif -------------------------------------------------------------------------------- /media/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/media/03.gif -------------------------------------------------------------------------------- /media/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/media/04.jpg -------------------------------------------------------------------------------- /mobilenet_ssd_v1_coco_quant_postprocess_edgetpu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/mobilenet_ssd_v1_coco_quant_postprocess_edgetpu.tflite -------------------------------------------------------------------------------- /mobilenet_ssd_v1_voc_quant_postprocess_edgetpu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/mobilenet_ssd_v1_voc_quant_postprocess_edgetpu.tflite -------------------------------------------------------------------------------- /mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite -------------------------------------------------------------------------------- /mobilenet_ssd_v2_voc_quant_postprocess_edgetpu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/mobilenet_ssd_v2_voc_quant_postprocess_edgetpu.tflite -------------------------------------------------------------------------------- /voc_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PINTO0309/TPU-MobilenetSSD/HEAD/voc_labels.txt --------------------------------------------------------------------------------