Hi, I’m getting the following error:
InvalidArgumentError Traceback (most recent call last)
in
2 a_S = tf.random.normal([1, 4, 4, 3], mean=1, stddev=4)
3 a_G = tf.random.normal([1, 4, 4, 3], mean=1, stddev=4)
----> 4 J_style_layer_GG = compute_layer_style_cost(a_G, a_G)
5 J_style_layer_SG = compute_layer_style_cost(a_S, a_G)
6
in compute_layer_style_cost(a_S, a_G)
22
23 # Computing gram_matrices for both images S and G (≈2 lines)
—> 24 GS = gram_matrix(a_S)
25 GG = gram_matrix(a_G)
26
in gram_matrix(A)
13
14 #(≈1 line)
—> 15 GA = tf.matmul(A,tf.transpose(A))
and at the end:
InvalidArgumentError: In[0] mismatch In[1] shape: 16 vs. 3: [1,3,16] [16,3,1] 0 0 [Op:BatchMatMulV2]
I’m probably doing something wrong with reshaping the images, but don’t know what.
My code is looks like this:
tensor = tf.transpose(tf.reshape(tensor,shape=[1,-1,n_C]), perm=[0,2,1])
Can You help me with this?