cvlab-kaist / 3DGAN-Inversion

Official Implementation of WACV 2023 paper "3D GAN Inversion with Pose Optimization".
MIT License
110 stars 13 forks source link

editing #10

Closed luchaoqi closed 8 months ago

luchaoqi commented 1 year ago

Hi,

Are there any reasons for using the following editing directions?

    ganspace_directions = {
            'bright hair': (2, 7, 7, 4), #positive (direction)
            'smile': (12, 0, 5, 2), #positive 
            'age' : (5, 0, 5, 3.5), #negative: young
            'short hair': (2, 0, 5, 4), #negative
            'glass': (4, 0, 5, 4), #negative
            'gender': (0, 0, 5, 4) #negative(female -> male)
    }

Is there any literature helping you find these directions for eg3d or are these from your practical experiments? if so, how did you find them?

Thanks!