Closed MoonBunnyZZZ closed 5 years ago
Hi, cpm
means Convolutional Pose Machines, in the code this just the name for additional layers to adopt features of backbone for pose estimation. I believe using ELU
is a good idea to tackle dead neurons
problem, and as it was discussed in #27 in this code this is a legacy to reproduce the paper results. Absence of BN in some layers is also legacy, we've released new code for single-person pose estimation with more BNs.
Hi,
cpm
means Convolutional Pose Machines, in the code this just the name for additional layers to adopt features of backbone for pose estimation. I believe usingELU
is a good idea to tackledead neurons
problem, and as it was discussed in #27 in this code this is a legacy to reproduce the paper results. Absence of BN in some layers is also legacy, we've released new code for single-person pose estimation with more BNs.
Thank you for your reply.I will enjoy your new work.
Hi,
cpm
means Convolutional Pose Machines, in the code this just the name for additional layers to adopt features of backbone for pose estimation. I believe usingELU
is a good idea to tackledead neurons
problem, and as it was discussed in #27 in this code this is a legacy to reproduce the paper results. Absence of BN in some layers is also legacy, we've released new code for single-person pose estimation with more BNs.
Did you ever test ELU in gccpm-look-into-person-cvpr19.pytorch?
No, it was not the purpose there.
No, it was not the purpose there.
In your opinion, if using mobilenet v3 as backbone, which one layer to truncate?
By default, try to reuse all features, except classifier. Just add dilations and remove strides to save spatial resolution (have heatmaps and pafs 8 times smaller than input image).
Hope, it helped.
@Daniil-Osokin Q1: Does cpm in the network mean Convolutional Pose Machines? Q2: Where did cpm idea come from?It seems like that it's very important for result Q3: In #27, ELU was talked.Is it a good idea using ELU in InitialStage and RefinementStage? Because , in InitialStage, BN is not used.In RefinementStage,some layers have no BN after ReLU.