Order of operations
mediadepp opened this issue · 0 comments
mediadepp commented
I guess you've not implemented the part which was related to making
learnt_transformation_extended = tf.matmul(learnt_transformation, self.extra_input)
extra_input
should be multiplied from left. The correct one:
learnt_transformation_extended = tf.matmul(self.extra_input, learnt_transformation)