Print scalar tensor
Required prerequisites
- Make sure you've read the documentation. Your issue may be addressed there.
- Search the issue tracker and discussions to verify that this hasn't already been reported. +1 or comment there if it has.
What commit version of aidge do you use
-
aidge_core
:dev
Problem description
Printing a scalar Tensor gives {}
. I'd expect to see the value of the Tensor.
import aidge_core
import numpy as np
scalar_tensor = aidge_core.Tensor(np.array(5))
print(scalar_tensor) # prints {}