是否有办法取得一个scope下面的所有variables or functions as tensorflow
Created by: leonleeldc
在tensorflow中,我们可以使用下面这个方法取得scope为generator下面的所有变量。 g_vars = get_collection(fluid.layers.GraphKeys.TRAINABLE_VARIABLES, scope='generator')。 我发现我们可以用 g_vars = fluid.name_scope('generator') 得到一个contextlib._GeneratorContextManager,但是好像我们并不能利用它做进一步有用的操作。 多谢