如何在Theano中获取共享变量的名称?我看到打印它或使用str()
有效,但这是正确的方法吗?是否有任何与X.get_value()
类似的功能(例如X.get_name()
)?
示例:
import theano as th
import numpy as np
X = th.shared(name='xx', value=np.zeros(shape=(2), dtype=th.config.floatX), borrow=True)
print(X) # print 'xx'
print(str(X) == 'xx') # print 'True'
print(X.get_value()) # print [ 0. 0.]