목록DNN/Human Pose (2)
The Beautiful Future
HRNet 만든 사람들이 만들었다. Deep High-Resolution Representation Learning for Human Pose Estimation 이 논문 제목이다.HRNet은 COCO test-dev2017 에서 AP 77.0을 달성하였고 MPII test set에서 PCKh@0.5 92.3%을 달성함.PoseTrack2018 Multi-person Pose Tracking Challenge에서 우승하였고 keypoint detection task of COCO 2018에서 2등을 차지하였다. Simple Baseline for Human Pose Estimation and Tracking 논문을 구현한 리포다.싱글모델로 74.3 mAP을 달성하였다, MPII val 결과 (PCKh..
Convolutional Pose Machine CPM (https://github.com/namedBen/Convolutional-Pose-Machines-Pytorch/blob/master/config/config.yml) def adjust_learning_rate(optimizer, iters, base_lr, policy_parameter, policy='step', multiple=[1]): if policy == 'fixed': lr = base_lr elif policy == 'step': lr = base_lr * (policy_parameter['gamma'] ** (iters // policy_parameter['step_size'])) elif policy == 'exp': lr =..