├── .asserts ├── detect.jpg ├── image-20201103233753811.png └── 下载.jpeg ├── LICENSE ├── README.md ├── setup.py ├── tests ├── eval_default.py ├── eval_mydata.py ├── specify_pre_training_weight.py ├── test_voc2xyolo.py ├── train.py └── use_proxies.py └── xyolo ├── __init__.py ├── config.py ├── convert.py ├── init_yolo.py ├── preprocessing.py ├── xyolo_data ├── coco_classes.txt ├── yolo_anchors.txt └── yolov3.cfg └── yolo3 ├── __init__.py ├── model.py ├── utils.py └── yolo.py /.asserts/detect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/.asserts/detect.jpg -------------------------------------------------------------------------------- /.asserts/image-20201103233753811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/.asserts/image-20201103233753811.png -------------------------------------------------------------------------------- /.asserts/下载.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/.asserts/下载.jpeg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/setup.py -------------------------------------------------------------------------------- /tests/eval_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/eval_default.py -------------------------------------------------------------------------------- /tests/eval_mydata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/eval_mydata.py -------------------------------------------------------------------------------- /tests/specify_pre_training_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/specify_pre_training_weight.py -------------------------------------------------------------------------------- /tests/test_voc2xyolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/test_voc2xyolo.py -------------------------------------------------------------------------------- /tests/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/train.py -------------------------------------------------------------------------------- /tests/use_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/tests/use_proxies.py -------------------------------------------------------------------------------- /xyolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/__init__.py -------------------------------------------------------------------------------- /xyolo/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/config.py -------------------------------------------------------------------------------- /xyolo/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/convert.py -------------------------------------------------------------------------------- /xyolo/init_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/init_yolo.py -------------------------------------------------------------------------------- /xyolo/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/preprocessing.py -------------------------------------------------------------------------------- /xyolo/xyolo_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/xyolo_data/coco_classes.txt -------------------------------------------------------------------------------- /xyolo/xyolo_data/yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/xyolo_data/yolo_anchors.txt -------------------------------------------------------------------------------- /xyolo/xyolo_data/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/xyolo_data/yolov3.cfg -------------------------------------------------------------------------------- /xyolo/yolo3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/yolo3/__init__.py -------------------------------------------------------------------------------- /xyolo/yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/yolo3/model.py -------------------------------------------------------------------------------- /xyolo/yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/yolo3/utils.py -------------------------------------------------------------------------------- /xyolo/yolo3/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronJny/xyolo/HEAD/xyolo/yolo3/yolo.py --------------------------------------------------------------------------------