├── .gitmodules ├── LICENSE.md ├── README.md ├── data ├── classification_graphic.jpg ├── detection_graphic.jpg └── landing_graphic.jpg ├── examples ├── classification │ ├── classification.ipynb │ └── data │ │ ├── dog-yawning.jpg │ │ ├── imagenet_labels_1000.txt │ │ └── imagenet_labels_1001.txt └── detection │ ├── data │ └── huskies.jpg │ └── detection.ipynb ├── install.sh ├── scripts └── install_protoc.sh ├── setup.py └── tf_trt_models ├── __init__.py ├── classification.py ├── detection.py └── graph_utils.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/README.md -------------------------------------------------------------------------------- /data/classification_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/data/classification_graphic.jpg -------------------------------------------------------------------------------- /data/detection_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/data/detection_graphic.jpg -------------------------------------------------------------------------------- /data/landing_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/data/landing_graphic.jpg -------------------------------------------------------------------------------- /examples/classification/classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/classification/classification.ipynb -------------------------------------------------------------------------------- /examples/classification/data/dog-yawning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/classification/data/dog-yawning.jpg -------------------------------------------------------------------------------- /examples/classification/data/imagenet_labels_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/classification/data/imagenet_labels_1000.txt -------------------------------------------------------------------------------- /examples/classification/data/imagenet_labels_1001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/classification/data/imagenet_labels_1001.txt -------------------------------------------------------------------------------- /examples/detection/data/huskies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/detection/data/huskies.jpg -------------------------------------------------------------------------------- /examples/detection/detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/examples/detection/detection.ipynb -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/install.sh -------------------------------------------------------------------------------- /scripts/install_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/scripts/install_protoc.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/setup.py -------------------------------------------------------------------------------- /tf_trt_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf_trt_models/classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/tf_trt_models/classification.py -------------------------------------------------------------------------------- /tf_trt_models/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/tf_trt_models/detection.py -------------------------------------------------------------------------------- /tf_trt_models/graph_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tf_trt_models/HEAD/tf_trt_models/graph_utils.py --------------------------------------------------------------------------------