将tf.control_dependencies与session.run一起使用

时间:2018-08-06 23:23:41

标签: python tensorflow conv-neural-network

我想在CNN中的某些张量上运行子图并计算其值。但是在计算它们之前,我希望张量流能够预先评估某些其他张量并在其内部计算图中进行更新。因此,使用tf.control_dependencies似乎是合适的情况。代码是否合法,在示例代码中我还没有看到这样的用法。

def run_graph( fetches, feed_dict):
    dep = [....]  # a list of tensors that I want to be pre evaluted before run
    with tf.control_dependencies(dep):
        res = tf.session.run( fetches, feed_dict)

0 个答案:

没有答案