Mam zmienną tensorową theano utworzoną z odlewania wspólnej zmiennej. Jak wyodrębnić oryginalne lub rzucone wartości? (Muszę to więc nie trzeba nosić oryginalne współdzielonych/wartości NumPy wokół.)Jak uzyskać wartość z zmiennej tensor theano wspartej przez zmienną dzieloną?
>>> x = theano.shared(numpy.asarray([1, 2, 3], dtype='float'))
>>> y = theano.tensor.cast(x, 'int32')
>>> y.get_value(borrow=True)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'TensorVariable' object has no attribute 'get_value'
# whereas I can do this against the original shared variable
>>> x.get_value(borrow=True)
array([ 1., 2., 3.])