In tensorflow, there are two scope functions: variable_ops_scope and variable_scope. The first one has a signature as following:
variable_op_scope(values,name_or_scope,default_name,initializer, regularizer,caching_device, partitioner,reuse)
What does the first parameter "values" mean? "default_name" is only used when name_or_scope is None, so why this function need to take these two parameters? One parameter is enough...
In general, what is the difference between these two scopes?