一般这样用tf.get_variable(): v = tf.get_variable(name, shape, dtype, initializer) 下面内容来源于 http://blog.csdn.net/u012436149/article/details/53696970 当我们需要共享变量的时候,需要使用tf.get_variable() 使用tf.Variable时,如果检测到命名冲突,系统会自己处理.使用tf.get_variable()时,系统不会处理冲突,而会报错,例子: i…