thunguyenphuoc / HoloGAN

HoloGAN
333 stars 64 forks source link

This does not seem to work with TF 1.8 (and probably other versions) #10

Open Zenome84 opened 5 years ago

Zenome84 commented 5 years ago

On line 73 of ops.py, I assume that instead of: return v / (tf.reduce_sum(v ** 2) ** 0.5 + eps)

you meant to put: return v / (tf.sqrt(tf.reduce_sum(tf.square(v))) + eps)