Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove style loss div by c*c in losses.py #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

yihongXU
Copy link

Hi,
In utils.py gram matrix is already normalized by HxWxC :

        b, h, w, c = layer.get_shape().as_list() \
        num_elements = h*w*c
        features_matrix = tf.reshape(layer, tf.stack([b, -1, c]))
        gram_matrix = tf.matmul(features_matrix, features_matrix, transpose_a=True)
        gram_matrix = gram_matrix / tf.cast(num_elements, tf.float32)  

So I think that it might be wrong to normalize style loss by c1xc2 (c1 = c2 = c), since the stlye loss is already normalized by H^2 x W^2 x C^2 after L2 loss (cf. the formulation of style loss in Johnson's paper.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant