gitextract_o2hqtp1u/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── workflows/ │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── axelerate/ │ ├── __init__.py │ ├── evaluate.py │ ├── infer.py │ ├── networks/ │ │ ├── __init__.py │ │ ├── classifier/ │ │ │ ├── __init__.py │ │ │ ├── batch_gen.py │ │ │ ├── directory_iterator.py │ │ │ ├── frontend_classifier.py │ │ │ ├── iterator.py │ │ │ └── utils.py │ │ ├── common_utils/ │ │ │ ├── __init__.py │ │ │ ├── augment.py │ │ │ ├── callbacks.py │ │ │ ├── convert.py │ │ │ ├── feature.py │ │ │ ├── fit.py │ │ │ ├── install_edge_tpu_compiler.sh │ │ │ ├── install_openvino.sh │ │ │ └── mobilenet_sipeed/ │ │ │ ├── __init__.py │ │ │ ├── imagenet_utils.py │ │ │ └── mobilenet.py │ │ ├── segnet/ │ │ │ ├── __init__.py │ │ │ ├── data_utils/ │ │ │ │ ├── __init__.py │ │ │ │ └── data_loader.py │ │ │ ├── frontend_segnet.py │ │ │ ├── metrics.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _pspnet_2.py │ │ │ │ ├── all_models.py │ │ │ │ ├── basic_models.py │ │ │ │ ├── config.py │ │ │ │ ├── fcn.py │ │ │ │ ├── model.py │ │ │ │ ├── model_utils.py │ │ │ │ ├── pspnet.py │ │ │ │ ├── segnet.py │ │ │ │ └── unet.py │ │ │ ├── predict.py │ │ │ └── train.py │ │ └── yolo/ │ │ ├── __init__.py │ │ ├── backend/ │ │ │ ├── __init__.py │ │ │ ├── batch_gen.py │ │ │ ├── decoder.py │ │ │ ├── loss.py │ │ │ ├── network.py │ │ │ └── utils/ │ │ │ ├── __init__.py │ │ │ ├── annotation.py │ │ │ ├── box.py │ │ │ ├── custom.py │ │ │ └── eval/ │ │ │ ├── __init__.py │ │ │ ├── _box_match.py │ │ │ └── fscore.py │ │ └── frontend.py │ └── train.py ├── configs/ │ ├── classifier.json │ ├── detector.json │ ├── dogs_classifier.json │ ├── face_detector.json │ ├── kangaroo_detector.json │ ├── lego_detector.json │ ├── pascal_20_detector.json │ ├── pascal_20_detector_2.json │ ├── pascal_20_segnet.json │ ├── person_detector.json │ ├── raccoon_detector.json │ ├── santa_uno.json │ └── segmentation.json ├── example_scripts/ │ ├── arm_nn/ │ │ ├── README.md │ │ ├── box.py │ │ ├── cv_utils.py │ │ ├── network_executor.py │ │ ├── run_video_file.py │ │ ├── run_video_stream.py │ │ └── yolov2.py │ ├── edge_tpu/ │ │ └── detector/ │ │ ├── box.py │ │ └── detector_video.py │ ├── k210/ │ │ ├── classifier/ │ │ │ └── santa_uno.py │ │ ├── detector/ │ │ │ ├── yolov2/ │ │ │ │ ├── person_detector_v4.py │ │ │ │ ├── raccoon_detector.py │ │ │ │ └── raccoon_detector_uart.py │ │ │ └── yolov3/ │ │ │ └── raccoon_detector.py │ │ └── segnet/ │ │ └── segnet-support-is-WIP-contributions-welcome │ ├── oak/ │ │ └── yolov2/ │ │ ├── YOLO_best_mAP.json │ │ ├── box.py │ │ ├── yolo.py │ │ └── yolo_alt.py │ └── tensorflow_lite/ │ ├── classifier/ │ │ ├── base_camera.py │ │ ├── camera_opencv.py │ │ ├── camera_pi.py │ │ ├── classifier_file.py │ │ ├── classifier_stream.py │ │ ├── cv_utils.py │ │ └── templates/ │ │ └── index.html │ ├── detector/ │ │ ├── base_camera.py │ │ ├── camera_opencv.py │ │ ├── camera_pi.py │ │ ├── cv_utils.py │ │ ├── detector_file.py │ │ ├── detector_stream.py │ │ └── templates/ │ │ └── index.html │ └── segnet/ │ ├── base_camera.py │ ├── camera_opencv.py │ ├── camera_pi.py │ ├── cv_utils.py │ ├── segnet_file.py │ ├── segnet_stream.py │ └── templates/ │ └── index.html ├── resources/ │ ├── aXeleRate_face_detector.ipynb │ ├── aXeleRate_human_segmentation.ipynb │ ├── aXeleRate_mark_detector.ipynb │ ├── aXeleRate_pascal20_detector.ipynb │ ├── aXeleRate_person_detector.ipynb │ └── aXeleRate_standford_dog_classifier.ipynb ├── sample_datasets/ │ └── detector/ │ ├── anns/ │ │ ├── 2007_000032.xml │ │ └── 2007_000033.xml │ └── anns_validation/ │ ├── 2007_000243.xml │ ├── 2007_000250.xml │ ├── 2007_000645.xml │ ├── 2007_001595.xml │ ├── 2007_001834.xml │ ├── 2007_003131.xml │ ├── 2007_003201.xml │ ├── 2007_003593.xml │ ├── 2007_004627.xml │ └── 2007_005803.xml ├── setup.py └── tests_training_and_inference.py