├── LICENSE ├── README.md ├── __pycache__ ├── augmentations.cpython-38.pyc ├── callbacks.cpython-38.pyc ├── datasets.cpython-38.pyc ├── flag_sets.cpython-38.pyc ├── loggers.cpython-38.pyc ├── loss.cpython-38.pyc ├── metrics.cpython-38.pyc ├── model.cpython-38.pyc ├── plots.cpython-38.pyc ├── rename_state_dict.cpython-38.pyc ├── utils.cpython-38.pyc └── val.cpython-38.pyc ├── augmentations.py ├── callbacks.py ├── config ├── hyp.yaml ├── objectBox_COCO.yaml └── objectBox_VOC.yaml ├── data ├── VOC.yaml └── coco.yaml ├── datasets.py ├── detect.py ├── flag_sets.py ├── loggers.py ├── loss.py ├── metrics.py ├── model.py ├── plots.py ├── train.py ├── utils.py └── val.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/callbacks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/callbacks.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/flag_sets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/flag_sets.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/loggers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/loggers.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/rename_state_dict.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/rename_state_dict.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/val.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/__pycache__/val.cpython-38.pyc -------------------------------------------------------------------------------- /augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/augmentations.py -------------------------------------------------------------------------------- /callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/callbacks.py -------------------------------------------------------------------------------- /config/hyp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/config/hyp.yaml -------------------------------------------------------------------------------- /config/objectBox_COCO.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/config/objectBox_COCO.yaml -------------------------------------------------------------------------------- /config/objectBox_VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/config/objectBox_VOC.yaml -------------------------------------------------------------------------------- /data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/data/VOC.yaml -------------------------------------------------------------------------------- /data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/data/coco.yaml -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/datasets.py -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/detect.py -------------------------------------------------------------------------------- /flag_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/flag_sets.py -------------------------------------------------------------------------------- /loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/loggers.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/loss.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/metrics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/model.py -------------------------------------------------------------------------------- /plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/plots.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/utils.py -------------------------------------------------------------------------------- /val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohsenZand/ObjectBox/HEAD/val.py --------------------------------------------------------------------------------