├── README.md ├── __pycache__ ├── ctdet.cpython-37.pyc ├── dataset.cpython-37.pyc ├── loss.cpython-37.pyc ├── model.cpython-37.pyc └── utils.cpython-37.pyc ├── ctdet.py ├── dataset.py ├── loss.py ├── model.py ├── model_orig.py ├── outputs ├── epoch_0.jpg ├── epoch_1.jpg ├── epoch_10.jpg ├── epoch_11.jpg ├── epoch_12.jpg ├── epoch_13.jpg ├── epoch_14.jpg ├── epoch_15.jpg ├── epoch_16.jpg ├── epoch_17.jpg ├── epoch_18.jpg ├── epoch_19.jpg ├── epoch_2.jpg ├── epoch_3.jpg ├── epoch_4.jpg ├── epoch_5.jpg ├── epoch_6.jpg ├── epoch_7.jpg ├── epoch_8.jpg ├── epoch_9.jpg └── mask_loss.png ├── train.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/ctdet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/__pycache__/ctdet.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /ctdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/ctdet.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/dataset.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/loss.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/model.py -------------------------------------------------------------------------------- /model_orig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/model_orig.py -------------------------------------------------------------------------------- /outputs/epoch_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_0.jpg -------------------------------------------------------------------------------- /outputs/epoch_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_1.jpg -------------------------------------------------------------------------------- /outputs/epoch_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_10.jpg -------------------------------------------------------------------------------- /outputs/epoch_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_11.jpg -------------------------------------------------------------------------------- /outputs/epoch_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_12.jpg -------------------------------------------------------------------------------- /outputs/epoch_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_13.jpg -------------------------------------------------------------------------------- /outputs/epoch_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_14.jpg -------------------------------------------------------------------------------- /outputs/epoch_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_15.jpg -------------------------------------------------------------------------------- /outputs/epoch_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_16.jpg -------------------------------------------------------------------------------- /outputs/epoch_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_17.jpg -------------------------------------------------------------------------------- /outputs/epoch_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_18.jpg -------------------------------------------------------------------------------- /outputs/epoch_19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_19.jpg -------------------------------------------------------------------------------- /outputs/epoch_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_2.jpg -------------------------------------------------------------------------------- /outputs/epoch_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_3.jpg -------------------------------------------------------------------------------- /outputs/epoch_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_4.jpg -------------------------------------------------------------------------------- /outputs/epoch_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_5.jpg -------------------------------------------------------------------------------- /outputs/epoch_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_6.jpg -------------------------------------------------------------------------------- /outputs/epoch_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_7.jpg -------------------------------------------------------------------------------- /outputs/epoch_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_8.jpg -------------------------------------------------------------------------------- /outputs/epoch_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/epoch_9.jpg -------------------------------------------------------------------------------- /outputs/mask_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/outputs/mask_loss.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidml/Understanding-Centernet/HEAD/utils.py --------------------------------------------------------------------------------