├── LICENSE ├── README.md ├── assets ├── 100.jpg ├── 89.jpg ├── 99.jpg ├── demo.png ├── dog.jpg ├── git_fig.png ├── logo.png └── zidane.jpg ├── datasets └── README.md ├── demo ├── MegEngine │ ├── cpp │ │ ├── README.md │ │ ├── build.sh │ │ └── yolox.cpp │ └── python │ │ ├── README.md │ │ ├── build.py │ │ ├── coco_classes.py │ │ ├── convert_weights.py │ │ ├── demo.py │ │ ├── dump.py │ │ ├── models │ │ ├── __init__.py │ │ ├── darknet.py │ │ ├── network_blocks.py │ │ ├── yolo_fpn.py │ │ ├── yolo_head.py │ │ ├── yolo_pafpn.py │ │ └── yolox.py │ │ ├── process.py │ │ └── visualize.py ├── ONNXRuntime │ ├── README.md │ └── onnx_inference.py ├── OpenVINO │ ├── README.md │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── yolox_openvino.cpp │ └── python │ │ ├── README.md │ │ └── openvino_inference.py ├── TensorRT │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── logging.h │ │ └── yolox.cpp │ └── python │ │ └── README.md └── ncnn │ ├── android │ ├── README.md │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── yolox.param │ │ │ ├── java │ │ │ └── com │ │ │ │ └── megvii │ │ │ │ └── yoloXncnn │ │ │ │ ├── MainActivity.java │ │ │ │ ├── YOLOXncnn.java │ │ │ │ └── yoloXncnn.java │ │ │ ├── jni │ │ │ ├── CMakeLists.txt │ │ │ └── yoloXncnn_jni.cpp │ │ │ └── res │ │ │ ├── layout │ │ │ └── main.xml │ │ │ └── values │ │ │ └── strings.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── cpp │ ├── README.md │ └── yolox.cpp ├── docs └── train_custom_data.md ├── exps ├── default │ ├── nano.py │ ├── yolov3.py │ ├── yolox_l.py │ ├── yolox_m.py │ ├── yolox_s.py │ ├── yolox_tiny.py │ └── yolox_x.py └── example │ └── yolox_voc │ ├── __pycache__ │ └── yolox_yolo_s.cpython-38.pyc │ ├── yolox_voc_s.py │ └── yolox_yolo_s.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tools ├── demo.py ├── eval.py ├── export_onnx.py ├── train.py └── trt.py └── yolox ├── __init__.py ├── __pycache__ └── __init__.cpython-38.pyc ├── core ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── launch.cpython-38.pyc │ └── trainer.cpython-38.pyc ├── launch.py └── trainer.py ├── data ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── data_augment.cpython-38.pyc │ ├── data_prefetcher.cpython-38.pyc │ ├── dataloading.cpython-38.pyc │ └── samplers.cpython-38.pyc ├── data_augment.py ├── data_prefetcher.py ├── dataloading.py ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── coco.cpython-38.pyc │ │ ├── coco_classes.cpython-38.pyc │ │ ├── datasets_wrapper.cpython-38.pyc │ │ ├── mosaicdetection.cpython-38.pyc │ │ ├── voc.cpython-38.pyc │ │ ├── voc_classes.cpython-38.pyc │ │ ├── yolo.cpython-38.pyc │ │ └── yolo_classes.cpython-38.pyc │ ├── coco.py │ ├── coco_classes.py │ ├── datasets_wrapper.py │ ├── mosaicdetection.py │ ├── voc.py │ ├── voc_classes.py │ ├── yolo.py │ └── yolo_classes.py └── samplers.py ├── evaluators ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── coco_evaluator.cpython-38.pyc │ ├── voc_eval.cpython-38.pyc │ ├── voc_evaluator.cpython-38.pyc │ └── yolo_evaluator.cpython-38.pyc ├── coco_evaluator.py ├── voc_eval.py ├── voc_evaluator.py └── yolo_evaluator.py ├── exp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── base_exp.cpython-38.pyc │ ├── build.cpython-38.pyc │ └── yolox_base.cpython-38.pyc ├── base_exp.py ├── build.py └── yolox_base.py ├── layers ├── __init__.py ├── csrc │ ├── cocoeval │ │ ├── cocoeval.cpp │ │ └── cocoeval.h │ └── vision.cpp └── fast_coco_eval_api.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── darknet.cpython-38.pyc │ ├── losses.cpython-38.pyc │ ├── network_blocks.cpython-38.pyc │ ├── yolo_fpn.cpython-38.pyc │ ├── yolo_head.cpython-38.pyc │ ├── yolo_pafpn.cpython-38.pyc │ └── yolox.cpython-38.pyc ├── darknet.py ├── losses.py ├── network_blocks.py ├── yolo_fpn.py ├── yolo_head.py ├── yolo_pafpn.py └── yolox.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── allreduce_norm.cpython-38.pyc ├── boxes.cpython-38.pyc ├── checkpoint.cpython-38.pyc ├── demo_utils.cpython-38.pyc ├── dist.cpython-38.pyc ├── ema.cpython-38.pyc ├── logger.cpython-38.pyc ├── lr_scheduler.cpython-38.pyc ├── metric.cpython-38.pyc ├── model_utils.cpython-38.pyc ├── setup_env.cpython-38.pyc └── visualize.cpython-38.pyc ├── allreduce_norm.py ├── boxes.py ├── checkpoint.py ├── demo_utils.py ├── dist.py ├── ema.py ├── logger.py ├── lr_scheduler.py ├── metric.py ├── model_utils.py ├── setup_env.py └── visualize.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/README.md -------------------------------------------------------------------------------- /assets/100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/100.jpg -------------------------------------------------------------------------------- /assets/89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/89.jpg -------------------------------------------------------------------------------- /assets/99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/99.jpg -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/demo.png -------------------------------------------------------------------------------- /assets/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/dog.jpg -------------------------------------------------------------------------------- /assets/git_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/git_fig.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/assets/zidane.jpg -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/datasets/README.md -------------------------------------------------------------------------------- /demo/MegEngine/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/cpp/README.md -------------------------------------------------------------------------------- /demo/MegEngine/cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/cpp/build.sh -------------------------------------------------------------------------------- /demo/MegEngine/cpp/yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/cpp/yolox.cpp -------------------------------------------------------------------------------- /demo/MegEngine/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/README.md -------------------------------------------------------------------------------- /demo/MegEngine/python/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/build.py -------------------------------------------------------------------------------- /demo/MegEngine/python/coco_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/coco_classes.py -------------------------------------------------------------------------------- /demo/MegEngine/python/convert_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/convert_weights.py -------------------------------------------------------------------------------- /demo/MegEngine/python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/demo.py -------------------------------------------------------------------------------- /demo/MegEngine/python/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/dump.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/__init__.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/darknet.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/network_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/network_blocks.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/yolo_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/yolo_fpn.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/yolo_head.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/yolo_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/yolo_pafpn.py -------------------------------------------------------------------------------- /demo/MegEngine/python/models/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/models/yolox.py -------------------------------------------------------------------------------- /demo/MegEngine/python/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/process.py -------------------------------------------------------------------------------- /demo/MegEngine/python/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/MegEngine/python/visualize.py -------------------------------------------------------------------------------- /demo/ONNXRuntime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ONNXRuntime/README.md -------------------------------------------------------------------------------- /demo/ONNXRuntime/onnx_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ONNXRuntime/onnx_inference.py -------------------------------------------------------------------------------- /demo/OpenVINO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/README.md -------------------------------------------------------------------------------- /demo/OpenVINO/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /demo/OpenVINO/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/cpp/README.md -------------------------------------------------------------------------------- /demo/OpenVINO/cpp/yolox_openvino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/cpp/yolox_openvino.cpp -------------------------------------------------------------------------------- /demo/OpenVINO/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/python/README.md -------------------------------------------------------------------------------- /demo/OpenVINO/python/openvino_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/OpenVINO/python/openvino_inference.py -------------------------------------------------------------------------------- /demo/TensorRT/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/TensorRT/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /demo/TensorRT/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/TensorRT/cpp/README.md -------------------------------------------------------------------------------- /demo/TensorRT/cpp/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/TensorRT/cpp/logging.h -------------------------------------------------------------------------------- /demo/TensorRT/cpp/yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/TensorRT/cpp/yolox.cpp -------------------------------------------------------------------------------- /demo/TensorRT/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/TensorRT/python/README.md -------------------------------------------------------------------------------- /demo/ncnn/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/README.md -------------------------------------------------------------------------------- /demo/ncnn/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/build.gradle -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/assets/yolox.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/assets/yolox.param -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/MainActivity.java -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/YOLOXncnn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/YOLOXncnn.java -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/yoloXncnn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/java/com/megvii/yoloXncnn/yoloXncnn.java -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/jni/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/jni/CMakeLists.txt -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/jni/yoloXncnn_jni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/jni/yoloXncnn_jni.cpp -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /demo/ncnn/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo/ncnn/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/build.gradle -------------------------------------------------------------------------------- /demo/ncnn/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demo/ncnn/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /demo/ncnn/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/gradlew -------------------------------------------------------------------------------- /demo/ncnn/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/android/gradlew.bat -------------------------------------------------------------------------------- /demo/ncnn/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /demo/ncnn/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/cpp/README.md -------------------------------------------------------------------------------- /demo/ncnn/cpp/yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/demo/ncnn/cpp/yolox.cpp -------------------------------------------------------------------------------- /docs/train_custom_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/docs/train_custom_data.md -------------------------------------------------------------------------------- /exps/default/nano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/nano.py -------------------------------------------------------------------------------- /exps/default/yolov3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolov3.py -------------------------------------------------------------------------------- /exps/default/yolox_l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolox_l.py -------------------------------------------------------------------------------- /exps/default/yolox_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolox_m.py -------------------------------------------------------------------------------- /exps/default/yolox_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolox_s.py -------------------------------------------------------------------------------- /exps/default/yolox_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolox_tiny.py -------------------------------------------------------------------------------- /exps/default/yolox_x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/default/yolox_x.py -------------------------------------------------------------------------------- /exps/example/yolox_voc/__pycache__/yolox_yolo_s.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/example/yolox_voc/__pycache__/yolox_yolo_s.cpython-38.pyc -------------------------------------------------------------------------------- /exps/example/yolox_voc/yolox_voc_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/example/yolox_voc/yolox_voc_s.py -------------------------------------------------------------------------------- /exps/example/yolox_voc/yolox_yolo_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/exps/example/yolox_voc/yolox_yolo_s.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/setup.py -------------------------------------------------------------------------------- /tools/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/tools/demo.py -------------------------------------------------------------------------------- /tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/tools/eval.py -------------------------------------------------------------------------------- /tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/tools/export_onnx.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/trt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/tools/trt.py -------------------------------------------------------------------------------- /yolox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/__init__.py -------------------------------------------------------------------------------- /yolox/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/__init__.py -------------------------------------------------------------------------------- /yolox/core/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/core/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/core/__pycache__/trainer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/__pycache__/trainer.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/core/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/launch.py -------------------------------------------------------------------------------- /yolox/core/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/core/trainer.py -------------------------------------------------------------------------------- /yolox/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__init__.py -------------------------------------------------------------------------------- /yolox/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/__pycache__/data_augment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__pycache__/data_augment.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/__pycache__/data_prefetcher.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__pycache__/data_prefetcher.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/__pycache__/dataloading.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__pycache__/dataloading.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/__pycache__/samplers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/__pycache__/samplers.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/data_augment.py -------------------------------------------------------------------------------- /yolox/data/data_prefetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/data_prefetcher.py -------------------------------------------------------------------------------- /yolox/data/dataloading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/dataloading.py -------------------------------------------------------------------------------- /yolox/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__init__.py -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/coco.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/coco.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/coco_classes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/coco_classes.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/datasets_wrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/datasets_wrapper.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/mosaicdetection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/mosaicdetection.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/voc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/voc.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/voc_classes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/voc_classes.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/__pycache__/yolo_classes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/__pycache__/yolo_classes.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/coco.py -------------------------------------------------------------------------------- /yolox/data/datasets/coco_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/coco_classes.py -------------------------------------------------------------------------------- /yolox/data/datasets/datasets_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/datasets_wrapper.py -------------------------------------------------------------------------------- /yolox/data/datasets/mosaicdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/mosaicdetection.py -------------------------------------------------------------------------------- /yolox/data/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/voc.py -------------------------------------------------------------------------------- /yolox/data/datasets/voc_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/voc_classes.py -------------------------------------------------------------------------------- /yolox/data/datasets/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/yolo.py -------------------------------------------------------------------------------- /yolox/data/datasets/yolo_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/datasets/yolo_classes.py -------------------------------------------------------------------------------- /yolox/data/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/data/samplers.py -------------------------------------------------------------------------------- /yolox/evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__init__.py -------------------------------------------------------------------------------- /yolox/evaluators/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/evaluators/__pycache__/coco_evaluator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__pycache__/coco_evaluator.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/evaluators/__pycache__/voc_eval.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__pycache__/voc_eval.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/evaluators/__pycache__/voc_evaluator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__pycache__/voc_evaluator.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/evaluators/__pycache__/yolo_evaluator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/__pycache__/yolo_evaluator.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/evaluators/coco_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/coco_evaluator.py -------------------------------------------------------------------------------- /yolox/evaluators/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/voc_eval.py -------------------------------------------------------------------------------- /yolox/evaluators/voc_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/voc_evaluator.py -------------------------------------------------------------------------------- /yolox/evaluators/yolo_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/evaluators/yolo_evaluator.py -------------------------------------------------------------------------------- /yolox/exp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/__init__.py -------------------------------------------------------------------------------- /yolox/exp/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/exp/__pycache__/base_exp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/__pycache__/base_exp.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/exp/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/exp/__pycache__/yolox_base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/__pycache__/yolox_base.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/exp/base_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/base_exp.py -------------------------------------------------------------------------------- /yolox/exp/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/build.py -------------------------------------------------------------------------------- /yolox/exp/yolox_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/exp/yolox_base.py -------------------------------------------------------------------------------- /yolox/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/layers/__init__.py -------------------------------------------------------------------------------- /yolox/layers/csrc/cocoeval/cocoeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/layers/csrc/cocoeval/cocoeval.cpp -------------------------------------------------------------------------------- /yolox/layers/csrc/cocoeval/cocoeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/layers/csrc/cocoeval/cocoeval.h -------------------------------------------------------------------------------- /yolox/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /yolox/layers/fast_coco_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/layers/fast_coco_eval_api.py -------------------------------------------------------------------------------- /yolox/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__init__.py -------------------------------------------------------------------------------- /yolox/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/darknet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/darknet.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/losses.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/losses.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/network_blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/network_blocks.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/yolo_fpn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/yolo_fpn.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/yolo_head.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/yolo_head.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/yolo_pafpn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/yolo_pafpn.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/__pycache__/yolox.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/__pycache__/yolox.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/models/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/darknet.py -------------------------------------------------------------------------------- /yolox/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/losses.py -------------------------------------------------------------------------------- /yolox/models/network_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/network_blocks.py -------------------------------------------------------------------------------- /yolox/models/yolo_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/yolo_fpn.py -------------------------------------------------------------------------------- /yolox/models/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/yolo_head.py -------------------------------------------------------------------------------- /yolox/models/yolo_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/yolo_pafpn.py -------------------------------------------------------------------------------- /yolox/models/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/models/yolox.py -------------------------------------------------------------------------------- /yolox/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__init__.py -------------------------------------------------------------------------------- /yolox/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/allreduce_norm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/allreduce_norm.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/boxes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/boxes.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/checkpoint.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/checkpoint.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/demo_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/demo_utils.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/ema.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/ema.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/logger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/logger.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/lr_scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/lr_scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/metric.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/metric.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/model_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/model_utils.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/setup_env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/setup_env.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/__pycache__/visualize.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/__pycache__/visualize.cpython-38.pyc -------------------------------------------------------------------------------- /yolox/utils/allreduce_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/allreduce_norm.py -------------------------------------------------------------------------------- /yolox/utils/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/boxes.py -------------------------------------------------------------------------------- /yolox/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/checkpoint.py -------------------------------------------------------------------------------- /yolox/utils/demo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/demo_utils.py -------------------------------------------------------------------------------- /yolox/utils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/dist.py -------------------------------------------------------------------------------- /yolox/utils/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/ema.py -------------------------------------------------------------------------------- /yolox/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/logger.py -------------------------------------------------------------------------------- /yolox/utils/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/lr_scheduler.py -------------------------------------------------------------------------------- /yolox/utils/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/metric.py -------------------------------------------------------------------------------- /yolox/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/model_utils.py -------------------------------------------------------------------------------- /yolox/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/setup_env.py -------------------------------------------------------------------------------- /yolox/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xialuxi/yolox-face-landmarks/HEAD/yolox/utils/visualize.py --------------------------------------------------------------------------------