I'm new to Python and got this code from GitHub but got an error
with the @
symbol:
x=x @ self.wHidden
^
SyntaxError: invalid syntax
I couldn't find the solution by searching for this error.
if self.hidden:
x=x @ self.wHidden
x.add_(self.wHiddenBias)
x=x.clamp(min=0)
x=self.dropout(x)
x=x @ self.wNeu
x.add_(self.wNeuBias)