Skip to content

Instantly share code, notes, and snippets.

@jstraughter
jstraughter / content.py
Created November 10, 2020 17:40 — forked from SubhadityaMukherjee/content.py
Neural Style Transfer
def get_content_loss(base_content, target):
return tf.reduce_mean(tf.square(base_content - target))