├── .gitignore ├── CoreML_convert.py ├── README.md ├── model.py ├── pics ├── VID_edited.gif ├── VID_orig.gif ├── ex_2_orig.png ├── ex_2_transformed.png ├── ex_3_edited_mask.png ├── ex_3_orig_mask.png ├── example_1.png ├── girl_ex_blured.png ├── girl_ex_orig.png ├── mobilenetV2_loss.png ├── mobilenetV2_metric.png ├── resnet101_loss.png └── resnet101_metric.png ├── predict.py ├── requirements.sh ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | /test/ 2 | /models/ 3 | .vscode 4 | 5 | -------------------------------------------------------------------------------- /CoreML_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/CoreML_convert.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/model.py -------------------------------------------------------------------------------- /pics/VID_edited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/VID_edited.gif -------------------------------------------------------------------------------- /pics/VID_orig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/VID_orig.gif -------------------------------------------------------------------------------- /pics/ex_2_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/ex_2_orig.png -------------------------------------------------------------------------------- /pics/ex_2_transformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/ex_2_transformed.png -------------------------------------------------------------------------------- /pics/ex_3_edited_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/ex_3_edited_mask.png -------------------------------------------------------------------------------- /pics/ex_3_orig_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/ex_3_orig_mask.png -------------------------------------------------------------------------------- /pics/example_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/example_1.png -------------------------------------------------------------------------------- /pics/girl_ex_blured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/girl_ex_blured.png -------------------------------------------------------------------------------- /pics/girl_ex_orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/girl_ex_orig.png -------------------------------------------------------------------------------- /pics/mobilenetV2_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/mobilenetV2_loss.png -------------------------------------------------------------------------------- /pics/mobilenetV2_metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/mobilenetV2_metric.png -------------------------------------------------------------------------------- /pics/resnet101_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/resnet101_loss.png -------------------------------------------------------------------------------- /pics/resnet101_metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/pics/resnet101_metric.png -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/requirements.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gasparian/PicsArtHack-binary-segmentation/HEAD/utils.py --------------------------------------------------------------------------------