You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the paper it is mentioned that there are 26 style modulation layers, but in the code it seems to be 18 as n_latent = 18.
What exactly do the style parameters s(w) correspond to in the code?
For the pertained styles, is there any way to control low-level features like eyes, nose, etc. without training again? I know that while fine-tuning we can use blending (using RIS) and different masks for controlling them but is there any way for a model which is already fine-tuned?
I see a change in results when fine-tuning the model using JoJo's photo. Is it because of e4e being used instead of ReStyle in the code?
The text was updated successfully, but these errors were encountered:
A way to do that is to load the original model and fine interpolate between the finetuned/original features as described in the feature interpolation section of the paper. To specifically control eyes/nose/etc you can specifically interpolate those section by cropping those spatial regions within the features. Look at https://arxiv.org/abs/2111.01619
There have been several versions with several different hyperparameters. Thus you might not get the exact same result.
So if I understood it correctly, then there are 17 StyledConv layers with independent codes and 9 ToRGB layers with shared codes. Hence, 26 layers and 18 codes in total.
Quoting your paper,
We GAN invert the reference style image y to obtain a style code w = T(y) and from that a set of s parameters s(w).
So, by obtaining s(w), do you mean implicitly obtaining them through that line of code you mentioned? Because in the fine-tuning code there doesn't seem to be any explicit reference to obtain these parameters.
Great. Will definitely give it a shot.
That makes sense.
007prateekd
changed the title
Regarding style modulation layers, style parameters and controlling low-level features.
Style modulation layers, style parameters and controlling low-level features.
Feb 16, 2023
Hey, great work!
I had a couple of queries:
n_latent
= 18.The text was updated successfully, but these errors were encountered: