deep-high-resolution-net.pytorch
deep-high-resolution-net.pytorch copied to clipboard
The project is an official implementation of our CVPR2019 paper "Deep High-Resolution Representation Learning for Human Pose Estimation"
self.joints_weight = np.array( [ 1., 1., 1., 1., 1., 1., 1., 1.2, 1.2, 1.5, 1.5, 1., 1., 1.2, 1.2, 1.5, 1.5 ], dtype=np.float32 ).reshape((self.num_joints, 1)) Can you explain to me...
MPII Vis
Thanks for your works! In Deep residual network, resnet34 use basicblock and resnet50/101 use bottleneck for practice performance. So what about hrnet? If hrnet replace basicblock by bottleneck in stage...
Hi, I wanted to try using the pre-trained models with other data set. I am using azure ml to execute the code. I tried using the code: > python tools/test.py...
Bumps [opencv-python](https://github.com/skvark/opencv-python) from 3.4.1.15 to 4.2.0.32. Release notes Sourced from opencv-python's releases. 4.2.0.32 opencv-python: https://pypi.org/project/opencv-python/ opencv-contrib-python: https://pypi.org/project/opencv-contrib-python/ opencv-python-headless: https://pypi.org/project/opencv-python-headless/ opencv-contrib-python-headless: https://pypi.org/project/opencv-contrib-python-headless/ OpenCV version 4.2.0. Changes: macOS environment updated from xcode8.3...
Hello, can anyone help me to fix this error? I have made new fresh conda env and install pytorch 1.5.1 with cuda 10.2 and follow every single step from requirements.txt...
The AI challenger data is not accessible (https://challenger.ai/dataset/keypoint) The model weights trained with it is not provided? How to reproduce the best performed one of pose_hrnet_w48*?
in UDP-Pose/deep-high-resolution-net.pytorch/lib/core/evaluate.py Line 55 in d742edd norm = np.ones((pred.shape[0], 2)) * np.array([h, w]) / 10 norm = np.ones((pred.shape[0], 2)) * np.array([h, w]) / 10 I did know why use norm...
In lib/core/evaluate.py, function **calc_dists**, the Euclidean distance will be calculated under the condition: `if target[n, c, 0] > 1 and target[n, c, 1] > 1:` It seems that you exclude...