I'm trying to run a python code. This code have an '@' ( at) operator. I never saw it before, and Google returns no hits.
init = model.potentials[key].init_weights(model)
if init.ndim==2:
U, S, Vt = np.linalg.svd(init, False)
init = U@Vt
It says the following error:
init = U@Vt
^
SyntaxError: invalid syntax
I'm using Python 2.7 to compile it. Do anyone know about this operator ?