deep-high-resolution-net.pytorch icon indicating copy to clipboard operation
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"

Results 130 deep-high-resolution-net.pytorch issues
Sort by recently updated
recently updated
newest added

def calc_dists(preds, target, normalize): preds = preds.astype(np.float32) target = target.astype(np.float32) dists = np.zeros((preds.shape[1], preds.shape[0])) for n in range(preds.shape[0]): for c in range(preds.shape[1]): if target[n, c, 0] > 1 and target[n,...

Can this code use other data?For example, medical image, please give some specific Suggestions?thank you.

Hello, all. Is there any tool to convert torch's HRnet model to tf-lite model?

hello, all有开发将torch的HRnet模型转换为tf-lite模型的工具吗?

Hello. I modified main() in demo/inference.py. [Description] While loop in main() does not terminate after the last frame of the video. I modified if condition so that while loop terminates...

使用mpii数据集训练过程中,所有的Accuracy都为0,包括各个关键点的精度都是为0,想请教下是否有遇到过同样问题

Thank you for releasing the code. The README of this repo lists out the validation accuracies of the MPII dataset in terms of **Mean**. On the other hand, the table...

Epoch: [209][0/696] Time 39.140s (39.140s) Speed 0.8 samples/s Data 29.137s (29.137s) Loss 0.00019 (0.00019) Accuracy 0.994 (0.994) Epoch: [209][100/696] Time 0.867s (1.182s) Speed 36.9 samples/s Data 0.000s (0.365s) Loss 0.00018...

The authors provide json files for MPII dataset (train.json, trainval.json..). I want to create json files for my custom dataset to use the code for MPII dataset. but I do...