├── .idea ├── Look_At_Boundary_PyTorch.iml ├── dictionaries │ ├── jin.xml │ └── zhijun.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── other.xml ├── vcs.xml └── workspace.xml ├── README.md ├── dataset.py ├── evaluate.py ├── main.py ├── models ├── __init__.py ├── losses.py └── models.py ├── train.py └── utils ├── __init__.py ├── args.py ├── dataload.py ├── dataset_info.py ├── pdb.py ├── train_eval_utils.py └── visual.py /.idea/Look_At_Boundary_PyTorch.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /.idea/dictionaries/jin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | caffe 5 | cfss 6 | cofw 7 | imwrite 8 | mmod 9 | nparts 10 | sapm 11 | tcdcn 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/dictionaries/zhijun.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | accuracys 5 | aflw 6 | allshapes 7 | anno 8 | annos 9 | batchnorm 10 | batchsize 11 | bcsize 12 | bilinear 13 | ckpts 14 | conv 15 | cuda 16 | cudnn 17 | dataload 18 | dataloader 19 | dataloading 20 | datasets 21 | dfake 22 | discrim 23 | downsample 24 | fmfhourglass 25 | frobenius 26 | frontalset 27 | fullset 28 | gthm 29 | heatmap 30 | heatmaps 31 | idxs 32 | imgs 33 | imread 34 | imshow 35 | inchannels 36 | inplanes 37 | ispdb 38 | keypoint 39 | keypoints 40 | largepose 41 | lsll 42 | lsul 43 | maxpool 44 | newidx 45 | numbins 46 | numel 47 | regressor 48 | relu 49 | standarised 50 | strd 51 | testset 52 | tform 53 | trainset 54 | usll 55 | usul 56 | wflw 57 | wingloss 58 | zhijun 59 | 60 | 61 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 659 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 73 | 74 | 75 | 76 | ratote_limit 77 | ratate_limit 78 | ratotion 79 | cat 80 | assert 81 | test68 82 | dataset 83 | img 84 | 85 | 86 | 87 | ratate_limit 88 | rotate_limit 89 | rotation 90 | COFW68 91 | 92 | 93 | 94 | 96 | 97 | 116 | 117 | 118 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 |