有一段代码使用name_scope
及其参数values
with tf.compat.v1.name_scope("my_name_scope", values=[images]):
# Define the neural network architecture with Keras' Sequential API
其中images
是可迭代迭代器的get_next
方法返回的对象。用[images]
初始化值的目的是什么?我们什么时候应该做?
name_scope
的文档中甚至没有提到该参数。 Here是使用它的脚本的完整示例。