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
Thanks for this excellent work. I have one question:
def decode(self, content, style):
# decode content and style codes to an image
adain_params = self.mlp(style)
self.assign_adain_params(adain_params, self.dec)
images = self.dec(content)
return images
In this generated function-decode(), style code is related to adain_params, but self.dec network does not use adain_params or style code to generate new images. Or I have the wrong understanding.
The text was updated successfully, but these errors were encountered:
Thanks for this excellent work. I have one question:
def decode(self, content, style):
# decode content and style codes to an image
adain_params = self.mlp(style)
self.assign_adain_params(adain_params, self.dec)
images = self.dec(content)
return images
In this generated function-decode(), style code is related to adain_params, but self.dec network does not use adain_params or style code to generate new images. Or I have the wrong understanding.
The text was updated successfully, but these errors were encountered: