i am new in Tensorflow, so sorry for obvious mistakes.
I try to make a division wich evaluates to inf. The following line produces the problem :
style_loss1_1 = tf.div(tf.reduce_sum(tf.pow(tensor_gen_gram1_1 - tensor_style_gram1_1, 2)),
tf.mul(tf.mul(4.0, 2517630976.0), 9.0))
I know that the i only multiply numbers, but if this works, i want to replace them by Tensorflow variables. So i need this multiplication. The thing which makes me crazy is, that when i change this line to this one :
style_loss1_1 = tf.div(tf.reduce_sum(tf.pow(tensor_gen_gram1_1 - tensor_style_gram1_1, 2)),
1.0)
everything works fine and i get the result : 7.41678e+19
I would be thankful for any help :)