capsule-networks
capsule-networks copied to clipboard
@ operator
hello,how does the operator @ work?
@plenari well, it is a "matmul" operator. You may try something like this in the prompt:
a = np.array([[1, 2], [3, 4]])
print(a @ a)
# The answer will be [[7, 10], [15, 22]]
Thank you.