roimehrez / contextualLoss

The Contextual Loss
http://cgm.technion.ac.il/Computer-Graphics-Multimedia/Software/Contextual/
489 stars 78 forks source link

Confusion #12

Closed akafen closed 6 years ago

akafen commented 6 years ago

I am confused with the code "A = Tvec @ tf.transpose(Ivec)" in CSFlow.py . What does @ mean and what does the code do ?

roimehrez commented 6 years ago

This is same as matmul. And this line is the dot product between the two vector sets.

https://www.python.org/dev/peps/pep-0465/