├── LICENSE ├── README.md ├── tao_action_recognition ├── data_generation │ ├── README.md │ ├── convert_dataset.py │ ├── convert_of.py │ ├── generate_new_dataset_format.py │ ├── jetson_of │ │ └── vpi │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ ├── load_tracks.py │ ├── preprocess_HMDB.sh │ ├── preprocess_HMDB_RGB.sh │ ├── preprocess_SHAD.sh │ ├── preprocess_SHAD_RGB.sh │ ├── resources │ │ ├── of_preprocess_pipe.png │ │ └── rgb_preprocess_pipe.png │ ├── save_tracks_shad.py │ └── split_dataset.py ├── doc │ └── load_I3D.md ├── specs │ ├── i3d_rgb_3d_64_export.yaml │ └── train_rgb_3d_64_i3d.yaml └── tensorrt_inference │ ├── README.md │ ├── ar_of_trt_inference.py │ ├── ar_trt_inference.py │ └── trt_inference │ ├── __init__.py │ └── engine.py ├── tao_api └── how_to_modify_code_for_TAO_API.md ├── tao_classification ├── deploy_to_deepstream │ └── README.md └── mobilenet_v2 │ └── mobilenetv2_imagenet2012.txt ├── tao_forum_faq └── FAQ.md ├── tao_key_points_estimation └── tensorrt_inference │ ├── README.md │ ├── fpenet_trt_inference.py │ └── trt_inference │ ├── __init__.py │ └── engine.py ├── tao_object_dection └── yolov4 │ ├── README.md │ └── specs │ ├── classification_cspdarknet53.txt │ └── yolov4_416_coco14.txt ├── tao_ocdr └── handwritten │ ├── ocdr_handwritten.ipynb │ ├── preprocess_data.py │ └── specs │ ├── ocd │ ├── evaluate.yaml │ ├── export.yaml │ ├── inference.yaml │ └── train.yaml │ └── ocr │ └── experiment.yaml ├── tao_pointpillars └── tensorrt_sample │ ├── LICENSE │ ├── README.md │ ├── include │ ├── pointpillar.h │ └── postprocess.h │ ├── src │ ├── pointpillar.cpp │ └── postprocess.cpp │ └── test │ ├── CMakeLists.txt │ └── main.cpp ├── tao_retinanet ├── README.md └── tao_retinanet_scales_aspect_ratio_estimate.py └── tao_training_without_network └── Guide.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/README.md -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/README.md -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/convert_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/convert_dataset.py -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/convert_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/convert_of.py -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/generate_new_dataset_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/generate_new_dataset_format.py -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/jetson_of/vpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/jetson_of/vpi/CMakeLists.txt -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/jetson_of/vpi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/jetson_of/vpi/main.cpp -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/load_tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/load_tracks.py -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/preprocess_HMDB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/preprocess_HMDB.sh -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/preprocess_HMDB_RGB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/preprocess_HMDB_RGB.sh -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/preprocess_SHAD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/preprocess_SHAD.sh -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/preprocess_SHAD_RGB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/preprocess_SHAD_RGB.sh -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/resources/of_preprocess_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/resources/of_preprocess_pipe.png -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/resources/rgb_preprocess_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/resources/rgb_preprocess_pipe.png -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/save_tracks_shad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/save_tracks_shad.py -------------------------------------------------------------------------------- /tao_action_recognition/data_generation/split_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/data_generation/split_dataset.py -------------------------------------------------------------------------------- /tao_action_recognition/doc/load_I3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/doc/load_I3D.md -------------------------------------------------------------------------------- /tao_action_recognition/specs/i3d_rgb_3d_64_export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/specs/i3d_rgb_3d_64_export.yaml -------------------------------------------------------------------------------- /tao_action_recognition/specs/train_rgb_3d_64_i3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/specs/train_rgb_3d_64_i3d.yaml -------------------------------------------------------------------------------- /tao_action_recognition/tensorrt_inference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/tensorrt_inference/README.md -------------------------------------------------------------------------------- /tao_action_recognition/tensorrt_inference/ar_of_trt_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/tensorrt_inference/ar_of_trt_inference.py -------------------------------------------------------------------------------- /tao_action_recognition/tensorrt_inference/ar_trt_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/tensorrt_inference/ar_trt_inference.py -------------------------------------------------------------------------------- /tao_action_recognition/tensorrt_inference/trt_inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/tensorrt_inference/trt_inference/__init__.py -------------------------------------------------------------------------------- /tao_action_recognition/tensorrt_inference/trt_inference/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_action_recognition/tensorrt_inference/trt_inference/engine.py -------------------------------------------------------------------------------- /tao_api/how_to_modify_code_for_TAO_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_api/how_to_modify_code_for_TAO_API.md -------------------------------------------------------------------------------- /tao_classification/deploy_to_deepstream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_classification/deploy_to_deepstream/README.md -------------------------------------------------------------------------------- /tao_classification/mobilenet_v2/mobilenetv2_imagenet2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_classification/mobilenet_v2/mobilenetv2_imagenet2012.txt -------------------------------------------------------------------------------- /tao_forum_faq/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_forum_faq/FAQ.md -------------------------------------------------------------------------------- /tao_key_points_estimation/tensorrt_inference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_key_points_estimation/tensorrt_inference/README.md -------------------------------------------------------------------------------- /tao_key_points_estimation/tensorrt_inference/fpenet_trt_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_key_points_estimation/tensorrt_inference/fpenet_trt_inference.py -------------------------------------------------------------------------------- /tao_key_points_estimation/tensorrt_inference/trt_inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_key_points_estimation/tensorrt_inference/trt_inference/__init__.py -------------------------------------------------------------------------------- /tao_key_points_estimation/tensorrt_inference/trt_inference/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_key_points_estimation/tensorrt_inference/trt_inference/engine.py -------------------------------------------------------------------------------- /tao_object_dection/yolov4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_object_dection/yolov4/README.md -------------------------------------------------------------------------------- /tao_object_dection/yolov4/specs/classification_cspdarknet53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_object_dection/yolov4/specs/classification_cspdarknet53.txt -------------------------------------------------------------------------------- /tao_object_dection/yolov4/specs/yolov4_416_coco14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_object_dection/yolov4/specs/yolov4_416_coco14.txt -------------------------------------------------------------------------------- /tao_ocdr/handwritten/ocdr_handwritten.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/ocdr_handwritten.ipynb -------------------------------------------------------------------------------- /tao_ocdr/handwritten/preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/preprocess_data.py -------------------------------------------------------------------------------- /tao_ocdr/handwritten/specs/ocd/evaluate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/specs/ocd/evaluate.yaml -------------------------------------------------------------------------------- /tao_ocdr/handwritten/specs/ocd/export.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/specs/ocd/export.yaml -------------------------------------------------------------------------------- /tao_ocdr/handwritten/specs/ocd/inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/specs/ocd/inference.yaml -------------------------------------------------------------------------------- /tao_ocdr/handwritten/specs/ocd/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/specs/ocd/train.yaml -------------------------------------------------------------------------------- /tao_ocdr/handwritten/specs/ocr/experiment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_ocdr/handwritten/specs/ocr/experiment.yaml -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/LICENSE -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/README.md -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/include/pointpillar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/include/pointpillar.h -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/include/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/include/postprocess.h -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/src/pointpillar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/src/pointpillar.cpp -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/src/postprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/src/postprocess.cpp -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/test/CMakeLists.txt -------------------------------------------------------------------------------- /tao_pointpillars/tensorrt_sample/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_pointpillars/tensorrt_sample/test/main.cpp -------------------------------------------------------------------------------- /tao_retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_retinanet/README.md -------------------------------------------------------------------------------- /tao_retinanet/tao_retinanet_scales_aspect_ratio_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_retinanet/tao_retinanet_scales_aspect_ratio_estimate.py -------------------------------------------------------------------------------- /tao_training_without_network/Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/tao_toolkit_recipes/HEAD/tao_training_without_network/Guide.md --------------------------------------------------------------------------------