Tensorflow's tensorflow variable_scope values parameter meaning
问题 I am currently reading a source code for slim library that is based on Tensorflow and they use values argument for variable_scope method alot, like here. From the API page I can see: This context manager validates that the (optional) values are from the same graph, ensures that graph is the default graph, and pushes a name scope and a variable scope. My question is: variables from values are only being checked if they are from the same graph? What are the use cases for this and why someone