How do i find the actual numerical values held in an MXNet symbol.
Suppose I have,
x = mx.sym.Variable('x')
y = mx.sym.Variable('y')
z = x + y,
if x = [100,200] and y=[300,400], I want to print:
z = [400,600]
,
sort of like tensorflow's eval() method