flrngel / cpc-tensorflow

Tensorflow implementation of "Representation Learning with Contrastive Predictive Coding"
64 stars 14 forks source link

function @? #6

Closed smileformylove closed 5 years ago

smileformylove commented 5 years ago

Thank you for your source code! But I have question in model.py[#37],I have not seen the @ on this condition!Could you give me some clues?

flrngel commented 5 years ago

hi @smileformylove @ is equal to matmul function https://www.tensorflow.org/api_docs/python/tf/linalg/matmul

Thanks!