Skip to content

Instantly share code, notes, and snippets.

@J3698
Created January 28, 2021 01:28
Show Gist options
  • Save J3698/ddd5398e9a5500c3f2b8a054ba375e0b to your computer and use it in GitHub Desktop.
Save J3698/ddd5398e9a5500c3f2b8a054ba375e0b to your computer and use it in GitHub Desktop.
create stylized image
def create_stylized_image(decoder, content_features, style_features):
stylized_content_features = adain(content_features[-1], style_features[-1])
stylized_image = decoder(stylized_content_features)
return stylized_image, stylized_content_features
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment