├── .DS_Store ├── .idea ├── RefineDetLite.PyTorch.iml ├── deployment.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── _gitattributes ├── _gitignore ├── data ├── __init__.py ├── coco.py ├── coco_labels.txt ├── config.py ├── example.jpg └── voc0712.py ├── demo ├── __init__.py ├── demo.py └── test.jpg ├── eval_refinedet_coco.sh ├── eval_refinedet_voc.sh ├── eval_refinedetlite_coco.py ├── eval_refinedetlite_voc.py ├── layers ├── __init__.py ├── box_utils.py ├── functions │ ├── __init__.py │ ├── detection_refinedet.py │ └── prior_box.py └── modules │ ├── __init__.py │ ├── l2norm.py │ ├── multibox_loss.py │ └── refinedet_multibox_loss.py ├── models ├── Res2NetLite72.py ├── Snet.py ├── modules.py └── refinedetlite.py ├── train_refinedet.py ├── train_refinedetlite_coco.sh ├── train_refinedetlite_voc.sh ├── utils ├── __init__.py ├── augmentations.py ├── logging.py ├── osutils.py └── utils.py └── weights └── snet_146.tar /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/RefineDetLite.PyTorch.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/RefineDetLite.PyTorch.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #RefinenetLite -------------------------------------------------------------------------------- /_gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/_gitattributes -------------------------------------------------------------------------------- /_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/_gitignore -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/coco.py -------------------------------------------------------------------------------- /data/coco_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/coco_labels.txt -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/config.py -------------------------------------------------------------------------------- /data/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/example.jpg -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/demo/test.jpg -------------------------------------------------------------------------------- /eval_refinedet_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/eval_refinedet_coco.sh -------------------------------------------------------------------------------- /eval_refinedet_voc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/eval_refinedet_voc.sh -------------------------------------------------------------------------------- /eval_refinedetlite_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/eval_refinedetlite_coco.py -------------------------------------------------------------------------------- /eval_refinedetlite_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/eval_refinedetlite_voc.py -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/box_utils.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/detection_refinedet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/functions/detection_refinedet.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/l2norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/modules/l2norm.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /layers/modules/refinedet_multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/layers/modules/refinedet_multibox_loss.py -------------------------------------------------------------------------------- /models/Res2NetLite72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/models/Res2NetLite72.py -------------------------------------------------------------------------------- /models/Snet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/models/Snet.py -------------------------------------------------------------------------------- /models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/models/modules.py -------------------------------------------------------------------------------- /models/refinedetlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/models/refinedetlite.py -------------------------------------------------------------------------------- /train_refinedet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/train_refinedet.py -------------------------------------------------------------------------------- /train_refinedetlite_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/train_refinedetlite_coco.sh -------------------------------------------------------------------------------- /train_refinedetlite_voc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/train_refinedetlite_voc.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/utils/logging.py -------------------------------------------------------------------------------- /utils/osutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/utils/osutils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/utils/utils.py -------------------------------------------------------------------------------- /weights/snet_146.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DayBreak-u/RefinedetLite.pytorch/HEAD/weights/snet_146.tar --------------------------------------------------------------------------------