├── .gitignore ├── README.md ├── data └── .gitignore ├── gen_images.py ├── helper.py ├── images ├── 1504860116.0556026.gif ├── batch.jpg └── chart.png ├── main.py ├── project_tests.py └── run_exp.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | data_road/ 2 | vgg/ 3 | gtFine_trainvaltest/ 4 | 5 | vgg16.npy 6 | -------------------------------------------------------------------------------- /gen_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/gen_images.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/helper.py -------------------------------------------------------------------------------- /images/1504860116.0556026.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/images/1504860116.0556026.gif -------------------------------------------------------------------------------- /images/batch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/images/batch.jpg -------------------------------------------------------------------------------- /images/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/images/chart.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/main.py -------------------------------------------------------------------------------- /project_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/project_tests.py -------------------------------------------------------------------------------- /run_exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karolmajek/CarND-Semantic-Segmentation/HEAD/run_exp.sh --------------------------------------------------------------------------------