├── .gitignore ├── ChasingTrainFramework_GeneralOneClassDetection ├── README.md ├── __init__.py ├── data_iterator_base │ ├── __init__.py │ └── data_batch.py ├── data_provider_base │ ├── __init__.py │ ├── base_data_adapter.py │ ├── base_provider.py │ ├── pickle_provider.py │ └── text_list_adapter.py ├── image_augmentation │ ├── __init__.py │ └── augmentor.py ├── inference_speed_eval │ ├── __init__.py │ ├── inference_speed_eval_with_mxnet_cudnn.py │ └── inference_speed_eval_with_tensorrt_cudnn.py ├── logging_GOCD.py ├── loss_layer_farm │ ├── __init__.py │ ├── cross_entropy_with_focal_loss_for_one_class_detection.py │ ├── cross_entropy_with_hnm_for_one_class_detection.py │ ├── mean_squared_error_with_hnm_for_one_class_detection.py │ └── mean_squared_error_with_ohem_for_one_class_detection.py ├── solver_GOCD.py └── train_GOCD.py ├── LICENSE ├── README.md ├── face_detection ├── README.md ├── accuracy_evaluation │ ├── evaluation_on_fddb.py │ ├── evaluation_on_widerface.py │ └── predict.py ├── config_farm │ ├── __init__.py │ ├── configuration_10_320_20L_5scales_v2.py │ └── configuration_10_560_25L_8scales_v1.py ├── data_iterator_farm │ ├── __init__.py │ ├── multithread_dataiter_for_cross_entropy_v1.py │ └── multithread_dataiter_for_cross_entropy_v2.py ├── data_provider_farm │ ├── pickle_provider.py │ └── text_list_adapter.py ├── demo │ └── demo.py ├── deploy_tensorrt │ ├── README.md │ ├── debug_image │ │ ├── test1.jpg │ │ ├── test2.jpg │ │ ├── test3.jpg │ │ ├── test5.jpg │ │ └── test6.jpg │ ├── predict_tensorrt.py │ └── to_onnx.py ├── inference_speed_evaluation │ ├── README.md │ └── inference_speed_eval.py ├── metric_farm │ ├── __init__.py │ └── metric_default.py ├── qualitative_results │ ├── v1_qualitative_1.jpg │ ├── v1_qualitative_2.jpg │ ├── v1_qualitative_3.jpg │ ├── v1_qualitative_4.jpg │ └── v1_qualitative_5.jpg └── symbol_farm │ ├── __init__.py │ ├── symbol_10_320_20L_5scales_v2.py │ ├── symbol_10_320_20L_5scales_v2_deploy.json │ ├── symbol_10_560_25L_8scales_v1.py │ ├── symbol_10_560_25L_8scales_v1_deploy.json │ └── symbol_structures.xlsx ├── head_detection ├── README.md ├── accuracy_evaluation │ ├── evaluation_on_brainwash.py │ ├── predict.py │ └── test_images │ │ ├── 2.jpg │ │ ├── 247.jpg │ │ ├── 322.jpg │ │ ├── 342.jpg │ │ ├── 377.jpg │ │ ├── 411.jpg │ │ ├── 5.jpg │ │ ├── 7.jpg │ │ └── 72.jpg ├── config_farm │ ├── __init__.py │ └── configuration_10_160_17L_4scales_v1.py ├── data_iterator_farm │ ├── __init__.py │ └── multithread_dataiter_for_cross_entropy_v1.py ├── data_provider_farm │ ├── pickle_provider.py │ ├── reformat_brainwash.py │ └── text_list_adapter.py ├── inference_speed_evaluation │ └── inference_speed_eval.py ├── metric_farm │ ├── __init__.py │ └── metric_default.py └── symbol_farm │ ├── __init__.py │ ├── symbol_10_160_17L_4scales_v1.py │ ├── symbol_10_160_17L_4scales_v1_deploy.json │ └── symbol_structures.xlsx ├── license_plate_detection └── README.md ├── pedestrian_detection ├── README.md ├── accuracy_evaluation │ ├── predict.py │ └── test_images │ │ ├── 1064.jpg │ │ ├── 1081.jpg │ │ ├── 1104.jpg │ │ ├── 1199.jpg │ │ ├── 1212.jpg │ │ ├── 1461.jpg │ │ ├── 2210.jpg │ │ ├── 2221.jpg │ │ ├── 2396.jpg │ │ ├── 2407.jpg │ │ ├── 2756.jpg │ │ ├── 3043.jpg │ │ ├── 326.jpg │ │ ├── 3368.jpg │ │ ├── 3812.jpg │ │ ├── 3914.jpg │ │ ├── 3981.jpg │ │ ├── 3988.jpg │ │ └── 877.jpg ├── config_farm │ ├── __init__.py │ └── configuration_30_320_20L_4scales_v1.py ├── data_iterator_farm │ ├── __init__.py │ └── multithread_dataiter_for_cross_entropy_v1.py ├── data_provider_farm │ ├── __init__.py │ ├── pickle_provider.py │ ├── reformat_caltech.py │ └── text_list_adapter.py ├── inference_speed_evaluation │ └── inference_speed_eval.py ├── metric_farm │ ├── __init__.py │ └── metric_default.py └── symbol_farm │ ├── __init__.py │ ├── symbol_30_320_20L_4scales_v1.py │ ├── symbol_30_320_20L_4scales_v1_deploy.json │ └── symbol_structures.xlsx └── vehicle_detection └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/.gitignore -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/README.md -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_iterator_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_iterator_base/data_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/data_iterator_base/data_batch.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/base_data_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/base_data_adapter.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/base_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/base_provider.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/pickle_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/pickle_provider.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/text_list_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/data_provider_base/text_list_adapter.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/image_augmentation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/image_augmentation/augmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/image_augmentation/augmentor.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/inference_speed_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/inference_speed_eval/inference_speed_eval_with_mxnet_cudnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/inference_speed_eval/inference_speed_eval_with_mxnet_cudnn.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/inference_speed_eval/inference_speed_eval_with_tensorrt_cudnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/inference_speed_eval/inference_speed_eval_with_tensorrt_cudnn.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/logging_GOCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/logging_GOCD.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/cross_entropy_with_focal_loss_for_one_class_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/cross_entropy_with_focal_loss_for_one_class_detection.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/cross_entropy_with_hnm_for_one_class_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/cross_entropy_with_hnm_for_one_class_detection.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/mean_squared_error_with_hnm_for_one_class_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/mean_squared_error_with_hnm_for_one_class_detection.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/mean_squared_error_with_ohem_for_one_class_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/loss_layer_farm/mean_squared_error_with_ohem_for_one_class_detection.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/solver_GOCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/solver_GOCD.py -------------------------------------------------------------------------------- /ChasingTrainFramework_GeneralOneClassDetection/train_GOCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/ChasingTrainFramework_GeneralOneClassDetection/train_GOCD.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/README.md -------------------------------------------------------------------------------- /face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/accuracy_evaluation/evaluation_on_fddb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/accuracy_evaluation/evaluation_on_fddb.py -------------------------------------------------------------------------------- /face_detection/accuracy_evaluation/evaluation_on_widerface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/accuracy_evaluation/evaluation_on_widerface.py -------------------------------------------------------------------------------- /face_detection/accuracy_evaluation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/accuracy_evaluation/predict.py -------------------------------------------------------------------------------- /face_detection/config_farm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/config_farm/__init__.py -------------------------------------------------------------------------------- /face_detection/config_farm/configuration_10_320_20L_5scales_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/config_farm/configuration_10_320_20L_5scales_v2.py -------------------------------------------------------------------------------- /face_detection/config_farm/configuration_10_560_25L_8scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/config_farm/configuration_10_560_25L_8scales_v1.py -------------------------------------------------------------------------------- /face_detection/data_iterator_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /face_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py -------------------------------------------------------------------------------- /face_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v2.py -------------------------------------------------------------------------------- /face_detection/data_provider_farm/pickle_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/data_provider_farm/pickle_provider.py -------------------------------------------------------------------------------- /face_detection/data_provider_farm/text_list_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/data_provider_farm/text_list_adapter.py -------------------------------------------------------------------------------- /face_detection/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/demo/demo.py -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/README.md -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/debug_image/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/debug_image/test1.jpg -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/debug_image/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/debug_image/test2.jpg -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/debug_image/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/debug_image/test3.jpg -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/debug_image/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/debug_image/test5.jpg -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/debug_image/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/debug_image/test6.jpg -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/predict_tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/predict_tensorrt.py -------------------------------------------------------------------------------- /face_detection/deploy_tensorrt/to_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/deploy_tensorrt/to_onnx.py -------------------------------------------------------------------------------- /face_detection/inference_speed_evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/inference_speed_evaluation/README.md -------------------------------------------------------------------------------- /face_detection/inference_speed_evaluation/inference_speed_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/inference_speed_evaluation/inference_speed_eval.py -------------------------------------------------------------------------------- /face_detection/metric_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /face_detection/metric_farm/metric_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/metric_farm/metric_default.py -------------------------------------------------------------------------------- /face_detection/qualitative_results/v1_qualitative_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/qualitative_results/v1_qualitative_1.jpg -------------------------------------------------------------------------------- /face_detection/qualitative_results/v1_qualitative_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/qualitative_results/v1_qualitative_2.jpg -------------------------------------------------------------------------------- /face_detection/qualitative_results/v1_qualitative_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/qualitative_results/v1_qualitative_3.jpg -------------------------------------------------------------------------------- /face_detection/qualitative_results/v1_qualitative_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/qualitative_results/v1_qualitative_4.jpg -------------------------------------------------------------------------------- /face_detection/qualitative_results/v1_qualitative_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/qualitative_results/v1_qualitative_5.jpg -------------------------------------------------------------------------------- /face_detection/symbol_farm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/__init__.py -------------------------------------------------------------------------------- /face_detection/symbol_farm/symbol_10_320_20L_5scales_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/symbol_10_320_20L_5scales_v2.py -------------------------------------------------------------------------------- /face_detection/symbol_farm/symbol_10_320_20L_5scales_v2_deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/symbol_10_320_20L_5scales_v2_deploy.json -------------------------------------------------------------------------------- /face_detection/symbol_farm/symbol_10_560_25L_8scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/symbol_10_560_25L_8scales_v1.py -------------------------------------------------------------------------------- /face_detection/symbol_farm/symbol_10_560_25L_8scales_v1_deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/symbol_10_560_25L_8scales_v1_deploy.json -------------------------------------------------------------------------------- /face_detection/symbol_farm/symbol_structures.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/face_detection/symbol_farm/symbol_structures.xlsx -------------------------------------------------------------------------------- /head_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/README.md -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/evaluation_on_brainwash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/evaluation_on_brainwash.py -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/predict.py -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/2.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/247.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/322.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/322.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/342.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/377.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/377.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/411.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/5.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/7.jpg -------------------------------------------------------------------------------- /head_detection/accuracy_evaluation/test_images/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/accuracy_evaluation/test_images/72.jpg -------------------------------------------------------------------------------- /head_detection/config_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /head_detection/config_farm/configuration_10_160_17L_4scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/config_farm/configuration_10_160_17L_4scales_v1.py -------------------------------------------------------------------------------- /head_detection/data_iterator_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /head_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py -------------------------------------------------------------------------------- /head_detection/data_provider_farm/pickle_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/data_provider_farm/pickle_provider.py -------------------------------------------------------------------------------- /head_detection/data_provider_farm/reformat_brainwash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/data_provider_farm/reformat_brainwash.py -------------------------------------------------------------------------------- /head_detection/data_provider_farm/text_list_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/data_provider_farm/text_list_adapter.py -------------------------------------------------------------------------------- /head_detection/inference_speed_evaluation/inference_speed_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/inference_speed_evaluation/inference_speed_eval.py -------------------------------------------------------------------------------- /head_detection/metric_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /head_detection/metric_farm/metric_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/metric_farm/metric_default.py -------------------------------------------------------------------------------- /head_detection/symbol_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /head_detection/symbol_farm/symbol_10_160_17L_4scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/symbol_farm/symbol_10_160_17L_4scales_v1.py -------------------------------------------------------------------------------- /head_detection/symbol_farm/symbol_10_160_17L_4scales_v1_deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/symbol_farm/symbol_10_160_17L_4scales_v1_deploy.json -------------------------------------------------------------------------------- /head_detection/symbol_farm/symbol_structures.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/head_detection/symbol_farm/symbol_structures.xlsx -------------------------------------------------------------------------------- /license_plate_detection/README.md: -------------------------------------------------------------------------------- 1 | Coming soon... -------------------------------------------------------------------------------- /pedestrian_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/README.md -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/predict.py -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1064.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1081.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1081.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1104.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1199.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1212.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/1461.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/1461.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/2210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/2210.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/2221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/2221.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/2396.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/2396.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/2407.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/2407.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/2756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/2756.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3043.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/326.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3368.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3368.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3812.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3812.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3914.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3914.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3981.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3981.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/3988.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/3988.jpg -------------------------------------------------------------------------------- /pedestrian_detection/accuracy_evaluation/test_images/877.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/accuracy_evaluation/test_images/877.jpg -------------------------------------------------------------------------------- /pedestrian_detection/config_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pedestrian_detection/config_farm/configuration_30_320_20L_4scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/config_farm/configuration_30_320_20L_4scales_v1.py -------------------------------------------------------------------------------- /pedestrian_detection/data_iterator_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pedestrian_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/data_iterator_farm/multithread_dataiter_for_cross_entropy_v1.py -------------------------------------------------------------------------------- /pedestrian_detection/data_provider_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pedestrian_detection/data_provider_farm/pickle_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/data_provider_farm/pickle_provider.py -------------------------------------------------------------------------------- /pedestrian_detection/data_provider_farm/reformat_caltech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/data_provider_farm/reformat_caltech.py -------------------------------------------------------------------------------- /pedestrian_detection/data_provider_farm/text_list_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/data_provider_farm/text_list_adapter.py -------------------------------------------------------------------------------- /pedestrian_detection/inference_speed_evaluation/inference_speed_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/inference_speed_evaluation/inference_speed_eval.py -------------------------------------------------------------------------------- /pedestrian_detection/metric_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pedestrian_detection/metric_farm/metric_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/metric_farm/metric_default.py -------------------------------------------------------------------------------- /pedestrian_detection/symbol_farm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pedestrian_detection/symbol_farm/symbol_30_320_20L_4scales_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/symbol_farm/symbol_30_320_20L_4scales_v1.py -------------------------------------------------------------------------------- /pedestrian_detection/symbol_farm/symbol_30_320_20L_4scales_v1_deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/symbol_farm/symbol_30_320_20L_4scales_v1_deploy.json -------------------------------------------------------------------------------- /pedestrian_detection/symbol_farm/symbol_structures.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/donnyyou/pytorch-lffd/HEAD/pedestrian_detection/symbol_farm/symbol_structures.xlsx -------------------------------------------------------------------------------- /vehicle_detection/README.md: -------------------------------------------------------------------------------- 1 | Coming soon... --------------------------------------------------------------------------------