├── DG_model.py ├── DG_train.py ├── README.md ├── config ├── coco.data ├── create_custom_model.sh ├── custom.data ├── yolov3-tiny.cfg ├── yolov3.cfg └── yolov3_ori.cfg ├── da_datasets.py ├── data ├── coco.names ├── custom │ ├── classes.names │ ├── images │ │ └── train.jpg │ ├── labels │ │ └── train.txt │ ├── train.txt │ └── valid.txt ├── get_coco_dataset.sh ├── marine_coco.names ├── train.txt └── val.txt ├── domain_classifier.py ├── test.py ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── augmentations.cpython-36.pyc │ ├── augmentations.cpython-37.pyc │ ├── datasets.cpython-36.pyc │ ├── datasets.cpython-37.pyc │ ├── logger.cpython-36.pyc │ ├── logger.cpython-37.pyc │ ├── parse_config.cpython-36.pyc │ ├── parse_config.cpython-37.pyc │ ├── utils.cpython-36.pyc │ └── utils.cpython-37.pyc ├── augmentations.py ├── datasets.py ├── logger.py ├── parse_config.py └── utils.py └── weights └── download_weights.sh /DG_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/DG_model.py -------------------------------------------------------------------------------- /DG_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/DG_train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/README.md -------------------------------------------------------------------------------- /config/coco.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/coco.data -------------------------------------------------------------------------------- /config/create_custom_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/create_custom_model.sh -------------------------------------------------------------------------------- /config/custom.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/custom.data -------------------------------------------------------------------------------- /config/yolov3-tiny.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/yolov3-tiny.cfg -------------------------------------------------------------------------------- /config/yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/yolov3.cfg -------------------------------------------------------------------------------- /config/yolov3_ori.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/config/yolov3_ori.cfg -------------------------------------------------------------------------------- /da_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/da_datasets.py -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/custom/classes.names: -------------------------------------------------------------------------------- 1 | train 2 | -------------------------------------------------------------------------------- /data/custom/images/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/custom/images/train.jpg -------------------------------------------------------------------------------- /data/custom/labels/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/custom/labels/train.txt -------------------------------------------------------------------------------- /data/custom/train.txt: -------------------------------------------------------------------------------- 1 | data/custom/images/train.jpg 2 | -------------------------------------------------------------------------------- /data/custom/valid.txt: -------------------------------------------------------------------------------- 1 | data/custom/images/train.jpg 2 | -------------------------------------------------------------------------------- /data/get_coco_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/get_coco_dataset.sh -------------------------------------------------------------------------------- /data/marine_coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/marine_coco.names -------------------------------------------------------------------------------- /data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/train.txt -------------------------------------------------------------------------------- /data/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/data/val.txt -------------------------------------------------------------------------------- /domain_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/domain_classifier.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/test.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/augmentations.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/augmentations.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/datasets.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/datasets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/datasets.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/logger.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parse_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/parse_config.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/parse_config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/parse_config.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/datasets.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/parse_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/parse_config.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mousecpn/DG-YOLO/HEAD/weights/download_weights.sh --------------------------------------------------------------------------------