You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TF-Slim adds a new scoping mechanism called "argument scope" or [arg_scope](./scopes.py). This new scope allows a user to specify one or more operations and
253
247
a set of arguments which will be passed to each of the operations defined in the
254
248
`arg_scope`. This functionality is best illustrated by example. Consider the
255
249
following code snippet:
@@ -439,8 +433,7 @@ let TF-Slim know about the additional loss and let TF-Slim handle the losses.
439
433
## Putting the Pieces Together
440
434
441
435
By combining TF-Slim Variables, Operations and scopes, we can write a normally
442
-
very complex network with very few lines of code. For example, the entire [VGG]
443
-
(https://www.robots.ox.ac.uk/~vgg/research/very_deep/) architecture can be
436
+
very complex network with very few lines of code. For example, the entire [VGG](https://www.robots.ox.ac.uk/~vgg/research/very_deep/) architecture can be
(https://www.tensorflow.org/versions/r0.7/how_tos/variables/index.html) page for
490
+
See [Restoring Variables](https://www.tensorflow.org/versions/r0.7/how_tos/variables/index.html#restoring-variables)
491
+
and [Choosing which Variables to Save and Restore](https://www.tensorflow.org/versions/r0.7/how_tos/variables/index.html#choosing-which-variables-to-save-and-restore)
492
+
sections of the [Variables](https://www.tensorflow.org/versions/r0.7/how_tos/variables/index.html) page for
503
493
more details.
504
494
505
495
### Using slim.variables to Track which Variables need to be Restored
0 commit comments