├── LICENSE ├── README.md ├── demo.jpg ├── demo.py ├── hlw_dataset.py ├── images ├── demo_result.png ├── demo_result_verbose.png └── network.png ├── loss.py ├── model.py ├── models ├── weights_dsac_pretrained.net └── weights_ngdsac_pretrained.net ├── ngdsac.py ├── test.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/README.md -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/demo.jpg -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/demo.py -------------------------------------------------------------------------------- /hlw_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/hlw_dataset.py -------------------------------------------------------------------------------- /images/demo_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/images/demo_result.png -------------------------------------------------------------------------------- /images/demo_result_verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/images/demo_result_verbose.png -------------------------------------------------------------------------------- /images/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/images/network.png -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/loss.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/model.py -------------------------------------------------------------------------------- /models/weights_dsac_pretrained.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/models/weights_dsac_pretrained.net -------------------------------------------------------------------------------- /models/weights_ngdsac_pretrained.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/models/weights_ngdsac_pretrained.net -------------------------------------------------------------------------------- /ngdsac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/ngdsac.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vislearn/ngdsac_horizon/HEAD/train.py --------------------------------------------------------------------------------