gitextract_4chdi2im/ ├── .gitignore ├── LICENSE ├── README.md ├── experiments/ │ ├── 001_MPII_ResNet.yaml │ ├── 001_MPII_ResNet_pretrained.yaml │ ├── 002_MPII_ResNet_withAttention.yaml │ ├── 002_MPII_ResNet_withAttention_pretrained.yaml │ ├── 003_MPII_ResNet_withPoseAttention.yaml │ ├── 003_MPII_ResNet_withPoseAttention_pretrained.yaml │ └── 004_MPII_ResNet_withAttention_train+val.yaml ├── models/ │ ├── .github/ │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .gitmodules │ ├── LICENSE │ └── slim/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── cifar10.py │ │ ├── dataset_factory.py │ │ ├── dataset_utils.py │ │ ├── download_and_convert_cifar10.py │ │ ├── download_and_convert_flowers.py │ │ ├── download_and_convert_mnist.py │ │ ├── flowers.py │ │ ├── imagenet.py │ │ └── mnist.py │ ├── deployment/ │ │ ├── __init__.py │ │ ├── model_deploy.py │ │ └── model_deploy_test.py │ ├── nets/ │ │ ├── __init__.py │ │ ├── alexnet.py │ │ ├── alexnet_test.py │ │ ├── cifarnet.py │ │ ├── inception.py │ │ ├── inception_resnet_v2.py │ │ ├── inception_resnet_v2_test.py │ │ ├── inception_utils.py │ │ ├── inception_v1.py │ │ ├── inception_v1_test.py │ │ ├── inception_v2.py │ │ ├── inception_v2_test.py │ │ ├── inception_v2_tsn.py │ │ ├── inception_v3.py │ │ ├── inception_v3_test.py │ │ ├── inception_v4.py │ │ ├── inception_v4_test.py │ │ ├── lenet.py │ │ ├── nets_factory.py │ │ ├── nets_factory_test.py │ │ ├── overfeat.py │ │ ├── overfeat_test.py │ │ ├── resnet_utils.py │ │ ├── resnet_v1.py │ │ ├── resnet_v1_test.py │ │ ├── resnet_v2.py │ │ ├── resnet_v2_test.py │ │ ├── vgg.py │ │ └── vgg_test.py │ └── preprocessing/ │ ├── __init__.py │ ├── cifarnet_preprocessing.py │ ├── inception_preprocessing.py │ ├── lenet_preprocessing.py │ ├── preprocessing_factory.py │ └── vgg_preprocessing.py ├── src/ │ ├── config.py │ ├── custom_ops/ │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── custom_ops_factory.py │ │ ├── pose_to_heatmap.cc │ │ ├── pose_utils.hpp │ │ ├── render_objects.cc │ │ ├── render_pose.cc │ │ ├── test/ │ │ │ ├── pose_to_heatmap_op_test.py │ │ │ ├── render_objects_op_test.py │ │ │ └── zero_out_channels_op_test.py │ │ └── zero_out_channels.cc │ ├── datasets/ │ │ ├── __init__.py │ │ ├── charades.py │ │ ├── dataset_factory.py │ │ ├── dataset_utils.py │ │ ├── hico.py │ │ ├── hmdb51.py │ │ ├── image_read_utils.py │ │ ├── jhmdb21.py │ │ ├── mpii.py │ │ └── video_data_utils.py │ ├── eval/ │ │ ├── __init__.py │ │ ├── cap_eval_utils.py │ │ └── utils.py │ ├── eval.py │ ├── loss.py │ ├── preprocess_pipeline.py │ ├── restore/ │ │ ├── __init__.py │ │ ├── model_restorer.py │ │ └── var_name_mapper.py │ └── train.py └── utils/ ├── convert_mpii_result_for_eval.m ├── convert_mpii_result_for_eval.sh └── dataset_utils/ └── gen_tfrecord_mpii.py