Closed DaoD closed 6 years ago
To whom it may concern,
Hi, I find a problem in the RankGAN code. The link is here
self.scores = tf.reshape(self.feature @ tf.transpose(self.reference, perm=[1, 0]), [-1])
I wonder how does this operator @ work.
Thanks.
Hello, for python 3.x, TensorFlow supports operator @, which stands for matrix multiplication. Hope this helps.
@desire2020 Thanks.
To whom it may concern,
Hi, I find a problem in the RankGAN code. The link is here
self.scores = tf.reshape(self.feature @ tf.transpose(self.reference, perm=[1, 0]), [-1])
I wonder how does this operator @ work.
Thanks.