muelea / shapy

CVPR 2022 - Official code repository for the paper: Accurate 3D Body Shape Regression using Metric and Semantic Attributes.
https://shapy.is.tue.mpg.de/
305 stars 44 forks source link

gender-neutral betas vs gender-specific betas #7

Closed mrT23 closed 2 years ago

mrT23 commented 2 years ago

Hi, great work.

i have a question about "gender-neutral betas" vs "gender-specific betas":

the neural network in "regressor/demo.py", that predicts the betas, doesnt have a gender_type category in its "exp_cfg" config.

but the attributes network has an option for "gender-specific" betas ("model_gender").

Could you elaborate on this ? can the neural network predict "gender-specific" betas ?

Thanks, Tal

muelea commented 2 years ago

Hi,

the SHAPY regressor is trained to predict gender-neutral betas. The attribute network we use during regressor training predicts gender-specific attribute ratings (this is necessary, since we use different words for male/female) from gender-neutral betas.

We don't have gender-specific versions of the SHAPY regressor. What you can do to get gender-specific SMPL-X betas from the regressor is to fit the gender-specific SMPL-X model to the gender-neutral SHPAY regressor prediction.

Hope that helps.

Best, Lea

mrT23 commented 2 years ago

Thanks for the detailed answer :)

Tal