了解theano共享变量。在Theano中遵循简单的循环做了什么?

时间:2016-08-27 11:22:15

标签: python theano

我遇到了一个类似于以下内容的剪切代码:

for tensor_var in list_of_tensor_vars:
    acc = theano.shared(tensor_var.get_value(borrow=False) * 0., borrow=True)
    # do some processing on acc

我试图了解这个循环在做什么。 我的解释是: 它创建的acc共享变量初始化为零,大小为tensor_var。 但tensor_vars中的这些list_of_tensor_vars具有不同的维度。 那么它是创建多个acc共享变量还是只创建一个acc共享变量? 我想了解它的工作方式,以便我可以在TensorFlow中实现相同的逻辑。

0 个答案:

没有答案