FeatureStyleEncoder
FeatureStyleEncoder copied to clipboard
When I run the train.py file, setting the batchsize to 2 will increase the running memory by more than two times. What's going on?
Since there are no boundaries provided in the repo, I've tried my own to change facial attributes. Unfortunately, my boundaries work well if I use them only with pSp or...
Hi, Where can we found boundary files to edit images in latent Space ?
Love the paper Any chance the code will be released soon?
Hi, It great work
Hi, It great work
The training code in trainer.py line 180 (```features = [None]*k + [fea] + [None]*(17-k)```)should be modified as: ``` if training_mode: features = None else: features = [None]*k + [fea] +...
Hello, Thank you for your valuable work. I have recently implemented In-Domain Gan inversion for editing attributes of binary images. As it didn't worked well on external real image editing...
Hi, I am using your approach to generate an initial latent and feature space for an hybrid approach. During optimization, the loss I use for feature reconstruction is the same...