├── .gitignore ├── LICENSE ├── README.md ├── anpr ├── data │ └── .gitignore ├── docker │ ├── Dockerfile │ ├── build.sh │ └── run.sh └── src │ ├── .gitignore │ ├── experiment1.ipynb │ └── export_part1.json ├── anpr_ocr ├── .gitignore ├── docker │ ├── Dockerfile │ ├── build.sh │ └── run.sh └── src │ ├── .ipynb_checkpoints │ ├── image_ocr-checkpoint.ipynb │ └── image_ocr_custom_train-checkpoint.ipynb │ ├── architecture.png │ ├── export_config.json │ └── image_ocr.ipynb ├── ssd ├── README.md ├── data │ └── VOC2007 │ │ └── .gitkeep ├── docker-compose.yml ├── docker │ ├── Dockerfile │ ├── Makefile.config │ └── requirements.txt └── export-configs │ ├── cityscapes-and-mapillary.json │ └── cityscapes.json └── unet_training ├── .gitignore ├── docker ├── Dockerfile ├── build.sh └── run.sh └── src ├── experiment_001 ├── config.json └── unet_train.ipynb └── experiment_002 ├── config.json └── unet_train.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /anpr/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /anpr/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr/docker/Dockerfile -------------------------------------------------------------------------------- /anpr/docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t supervisely_anpr . -------------------------------------------------------------------------------- /anpr/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr/docker/run.sh -------------------------------------------------------------------------------- /anpr/src/.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints -------------------------------------------------------------------------------- /anpr/src/experiment1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr/src/experiment1.ipynb -------------------------------------------------------------------------------- /anpr/src/export_part1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr/src/export_part1.json -------------------------------------------------------------------------------- /anpr_ocr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/.gitignore -------------------------------------------------------------------------------- /anpr_ocr/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/docker/Dockerfile -------------------------------------------------------------------------------- /anpr_ocr/docker/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t plate-number-recognition . -------------------------------------------------------------------------------- /anpr_ocr/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/docker/run.sh -------------------------------------------------------------------------------- /anpr_ocr/src/.ipynb_checkpoints/image_ocr-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/src/.ipynb_checkpoints/image_ocr-checkpoint.ipynb -------------------------------------------------------------------------------- /anpr_ocr/src/.ipynb_checkpoints/image_ocr_custom_train-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/src/.ipynb_checkpoints/image_ocr_custom_train-checkpoint.ipynb -------------------------------------------------------------------------------- /anpr_ocr/src/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/src/architecture.png -------------------------------------------------------------------------------- /anpr_ocr/src/export_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/src/export_config.json -------------------------------------------------------------------------------- /anpr_ocr/src/image_ocr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/anpr_ocr/src/image_ocr.ipynb -------------------------------------------------------------------------------- /ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/README.md -------------------------------------------------------------------------------- /ssd/data/VOC2007/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssd/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/docker-compose.yml -------------------------------------------------------------------------------- /ssd/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/docker/Dockerfile -------------------------------------------------------------------------------- /ssd/docker/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/docker/Makefile.config -------------------------------------------------------------------------------- /ssd/docker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/docker/requirements.txt -------------------------------------------------------------------------------- /ssd/export-configs/cityscapes-and-mapillary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/export-configs/cityscapes-and-mapillary.json -------------------------------------------------------------------------------- /ssd/export-configs/cityscapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/ssd/export-configs/cityscapes.json -------------------------------------------------------------------------------- /unet_training/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | *.h5 3 | .ipynb_checkpoints/ -------------------------------------------------------------------------------- /unet_training/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/docker/Dockerfile -------------------------------------------------------------------------------- /unet_training/docker/build.sh: -------------------------------------------------------------------------------- 1 | docker build -t tf-1.2-keras-2 . -------------------------------------------------------------------------------- /unet_training/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/docker/run.sh -------------------------------------------------------------------------------- /unet_training/src/experiment_001/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/src/experiment_001/config.json -------------------------------------------------------------------------------- /unet_training/src/experiment_001/unet_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/src/experiment_001/unet_train.ipynb -------------------------------------------------------------------------------- /unet_training/src/experiment_002/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/src/experiment_002/config.json -------------------------------------------------------------------------------- /unet_training/src/experiment_002/unet_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeepSystems/supervisely-tutorials/HEAD/unet_training/src/experiment_002/unet_train.ipynb --------------------------------------------------------------------------------