yuval-alaluf / SAM

Official Implementation for "Only a Matter of Style: Age Transformation Using a Style-Based Regression Model" (SIGGRAPH 2021) https://arxiv.org/abs/2102.02754
https://yuval-alaluf.github.io/SAM/
MIT License
632 stars 151 forks source link

Have you ever tried to edit the results of PSP encoder directly to realize aging? #43

Closed Adolf-K closed 2 years ago

Adolf-K commented 2 years ago

In your article, you redesigned an encoder similar to PSP encoder structure and added the coding results to the PSP results. Have you ever tried to edit the results of PSP encoder directly to realize age editing? thank

yuval-alaluf commented 2 years ago

Yes. We tried editing with pSp directly and the results were worse. pSp encodes images into far regions of W+ and therefore the editing capabilities are limited compared to other approaches, including SAM. With SAM, since we split the encoding and editing process into two steps (i.e., the initial embedding and the residual representing the change in age), we are able to better preserve identity and capture the desired age.

Adolf-K commented 2 years ago

This is consistent with my experimental results. Thank you for your reply