【发布时间】:2016-08-09 03:04:40
【问题描述】:
在 TensorFlow 中,有两个作用域函数:variable_ops_scope 和 variable_scope。第一个签名如下:
variable_op_scope(values, name_or_scope, default_name,initializer,
regularizer, caching_device, partitioner, reuse)
第一个参数values是什么意思? default_name 只在name_or_scope 是None 时使用,那么为什么这个函数需要带这两个参数呢?一个参数就够了。
总的来说,这两种作用域有什么区别?
【问题讨论】:
标签: machine-learning tensorflow tensorflow-serving