Yihong Xu
Results
1
issues of
Yihong Xu
Hi, In utils.py gram matrix is already normalized by HxWxC : ```python 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 =...