├── .gitignore ├── README.md ├── checkpoint ├── config.py ├── deep_fashion_to_tfrecord.py ├── deepfashion_label_map.pbtxt ├── eval.py ├── faster_rcnn_inception_resnet_v2_atrous_coco.config.template ├── train.py └── valohai.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/README.md -------------------------------------------------------------------------------- /checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/checkpoint -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/config.py -------------------------------------------------------------------------------- /deep_fashion_to_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/deep_fashion_to_tfrecord.py -------------------------------------------------------------------------------- /deepfashion_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/deepfashion_label_map.pbtxt -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/eval.py -------------------------------------------------------------------------------- /faster_rcnn_inception_resnet_v2_atrous_coco.config.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/faster_rcnn_inception_resnet_v2_atrous_coco.config.template -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/train.py -------------------------------------------------------------------------------- /valohai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valohai/deep-fashion-detection/HEAD/valohai.yaml --------------------------------------------------------------------------------