├── LICENSE ├── README.md ├── config ├── create_hand_model.sh ├── oxfordhand.data ├── prune_yolov3-hand.cfg ├── yolov3-hand.cfg ├── yolov3-tiny.cfg └── yolov3.cfg ├── data ├── README.md ├── converter.py ├── oxfordhand.names ├── train.txt └── valid.txt ├── debug_utils.py ├── models.py ├── test.py ├── test_prune.py ├── train.py ├── utils ├── augmentations.py ├── datasets.py ├── logger.py ├── parse_config.py └── utils.py └── weights └── download_weights.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/README.md -------------------------------------------------------------------------------- /config/create_hand_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/create_hand_model.sh -------------------------------------------------------------------------------- /config/oxfordhand.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/oxfordhand.data -------------------------------------------------------------------------------- /config/prune_yolov3-hand.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/prune_yolov3-hand.cfg -------------------------------------------------------------------------------- /config/yolov3-hand.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/yolov3-hand.cfg -------------------------------------------------------------------------------- /config/yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/yolov3-tiny.cfg -------------------------------------------------------------------------------- /config/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/config/yolov3.cfg -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/data/README.md -------------------------------------------------------------------------------- /data/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/data/converter.py -------------------------------------------------------------------------------- /data/oxfordhand.names: -------------------------------------------------------------------------------- 1 | hand 2 | 3 | -------------------------------------------------------------------------------- /data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/data/train.txt -------------------------------------------------------------------------------- /data/valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/data/valid.txt -------------------------------------------------------------------------------- /debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/debug_utils.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/models.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/test.py -------------------------------------------------------------------------------- /test_prune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/test_prune.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/train.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanluren/YOLOv3-model-pruning/HEAD/weights/download_weights.sh --------------------------------------------------------------------------------