├── LICENSE ├── README.md ├── pictures ├── 1426_both.png ├── 1426_image.png ├── 1426_segmentation.png └── screenshot_cvat.png ├── sample_dataset ├── convert_cvat_xml_to_label_image.py ├── train │ ├── Annotations_xml │ │ ├── 000003.xml │ │ ├── 000009.xml │ │ ├── 000063.xml │ │ ├── 000083.xml │ │ ├── 000120.xml │ │ ├── 000138.xml │ │ ├── 000172.xml │ │ ├── 000214.xml │ │ ├── 000230.xml │ │ └── 000272.xml │ ├── Images │ │ ├── 000003.jpg │ │ ├── 000009.jpg │ │ ├── 000063.jpg │ │ ├── 000083.jpg │ │ ├── 000120.jpg │ │ ├── 000138.jpg │ │ ├── 000172.jpg │ │ ├── 000214.jpg │ │ ├── 000230.jpg │ │ └── 000272.jpg │ └── Labels │ │ ├── 000003.png │ │ ├── 000009.png │ │ ├── 000063.png │ │ ├── 000083.png │ │ ├── 000120.png │ │ ├── 000138.png │ │ ├── 000172.png │ │ ├── 000214.png │ │ ├── 000230.png │ │ └── 000272.png └── val │ ├── Annotations │ ├── 000077.xml │ └── 000093.xml │ ├── Images │ ├── 000077.jpg │ └── 000093.jpg │ └── Labels │ ├── 000077.png │ └── 000093.png └── sources ├── custom_model.py ├── dataloader.py ├── main_export.py ├── main_inference.py ├── main_training.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/README.md -------------------------------------------------------------------------------- /pictures/1426_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/pictures/1426_both.png -------------------------------------------------------------------------------- /pictures/1426_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/pictures/1426_image.png -------------------------------------------------------------------------------- /pictures/1426_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/pictures/1426_segmentation.png -------------------------------------------------------------------------------- /pictures/screenshot_cvat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/pictures/screenshot_cvat.png -------------------------------------------------------------------------------- /sample_dataset/convert_cvat_xml_to_label_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/convert_cvat_xml_to_label_image.py -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000003.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000003.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000009.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000063.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000063.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000083.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000083.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000120.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000120.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000138.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000138.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000172.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000172.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000214.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000214.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000230.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000230.xml -------------------------------------------------------------------------------- /sample_dataset/train/Annotations_xml/000272.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Annotations_xml/000272.xml -------------------------------------------------------------------------------- /sample_dataset/train/Images/000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000003.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000009.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000063.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000083.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000120.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000138.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000172.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000214.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000230.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Images/000272.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Images/000272.jpg -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000003.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000009.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000063.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000083.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000120.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000138.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000172.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000214.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000230.png -------------------------------------------------------------------------------- /sample_dataset/train/Labels/000272.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/train/Labels/000272.png -------------------------------------------------------------------------------- /sample_dataset/val/Annotations/000077.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Annotations/000077.xml -------------------------------------------------------------------------------- /sample_dataset/val/Annotations/000093.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Annotations/000093.xml -------------------------------------------------------------------------------- /sample_dataset/val/Images/000077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Images/000077.jpg -------------------------------------------------------------------------------- /sample_dataset/val/Images/000093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Images/000093.jpg -------------------------------------------------------------------------------- /sample_dataset/val/Labels/000077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Labels/000077.png -------------------------------------------------------------------------------- /sample_dataset/val/Labels/000093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sample_dataset/val/Labels/000093.png -------------------------------------------------------------------------------- /sources/custom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/custom_model.py -------------------------------------------------------------------------------- /sources/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/dataloader.py -------------------------------------------------------------------------------- /sources/main_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/main_export.py -------------------------------------------------------------------------------- /sources/main_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/main_inference.py -------------------------------------------------------------------------------- /sources/main_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/main_training.py -------------------------------------------------------------------------------- /sources/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnkl314/DeepLabV3FineTuning/HEAD/sources/train.py --------------------------------------------------------------------------------