In mxnet 1.4 using the Python API, suppose I do
import mxnet as mx
var = mx.sym.var('a')
print(var) # <Symbol a>
var = mx.sym.var('b')
print(var) # <Symbol b>
How can I access Symbol a
by name?
I would like to do something like var_a = mx.sym.get_by_name('a')
.
I have checked this tutorial, the docs, as well as the source code but couldn't find anything.