/external/tensorflow/tensorflow/contrib/framework/python/ops/ |
D | arg_scope_test.py | 21 from tensorflow.contrib.framework.python.ops import arg_scope 56 with arg_scope([]) as sc: 64 with arg_scope([func1], a=1, b=None, c=[1]) as sc1: 66 with arg_scope({}) as sc2: 68 with arg_scope([]) as current_arg_scope: 77 with arg_scope([my_func], a=1): 82 with arg_scope([func3], d=1): 90 with arg_scope([func1], a=1, b=None, c=[1]) as scope: 106 with arg_scope([func1], a=1, b=None, c=[1]): 107 with arg_scope([func2], b=2, d=[2]) as scope: [all …]
|
D | variables_test.py | 25 from tensorflow.contrib.framework.python.ops import arg_scope 432 with arg_scope([variables_lib2.variable], device=DevFn()): 486 with arg_scope([variables_lib2.variable], device=device_fn): 515 with arg_scope([variables_lib2.variable], device=device_fn): 544 with arg_scope([variables_lib2.variable], device=device_fn): 645 with arg_scope([variables_lib2.model_variable], device=DevFn()): 659 with arg_scope([variables_lib2.model_variable], device=device_fn): 689 with arg_scope([variables_lib2.variable], collections='A'): 696 with arg_scope([variables_lib2.variable], collections='A'): 698 with arg_scope([variables_lib2.variable], collections='B'): [all …]
|
D | __init__.py | 23 from tensorflow.contrib.framework.python.ops.arg_scope import *
|
D | arg_scope.py | 111 def arg_scope(list_ops_or_scope, **kwargs): function
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/nets/ |
D | overfeat.py | 36 from tensorflow.contrib.framework.python.ops import arg_scope 49 with arg_scope( 54 with arg_scope([layers.conv2d], padding='SAME'): 55 with arg_scope([layers_lib.max_pool2d], padding='VALID') as arg_sc: 95 with arg_scope( 107 with arg_scope(
|
D | alexnet.py | 40 from tensorflow.contrib.framework.python.ops import arg_scope 53 with arg_scope( 58 with arg_scope([layers.conv2d], padding='SAME'): 59 with arg_scope([layers_lib.max_pool2d], padding='VALID') as arg_sc: 98 with arg_scope( 112 with arg_scope(
|
D | resnet_v1_test.py | 24 from tensorflow.contrib.framework.python.ops import arg_scope 169 with arg_scope([layers.conv2d], outputs_collections='end_points'): 183 with arg_scope(resnet_utils.resnet_arg_scope()): 230 with arg_scope(resnet_utils.resnet_arg_scope()): 231 with arg_scope([layers.batch_norm], is_training=False): 283 with arg_scope(resnet_utils.resnet_arg_scope()): 296 with arg_scope(resnet_utils.resnet_arg_scope()): 313 with arg_scope(resnet_utils.resnet_arg_scope()): 330 with arg_scope(resnet_utils.resnet_arg_scope()): 352 with arg_scope(resnet_utils.resnet_arg_scope()): [all …]
|
D | resnet_v2_test.py | 24 from tensorflow.contrib.framework.python.ops import arg_scope 172 with arg_scope([layers.conv2d], outputs_collections='end_points'): 186 with arg_scope(resnet_utils.resnet_arg_scope()): 234 with arg_scope(resnet_utils.resnet_arg_scope()): 235 with arg_scope([layers.batch_norm], is_training=False): 287 with arg_scope(resnet_utils.resnet_arg_scope()): 300 with arg_scope(resnet_utils.resnet_arg_scope()): 317 with arg_scope(resnet_utils.resnet_arg_scope()): 334 with arg_scope(resnet_utils.resnet_arg_scope()): 356 with arg_scope(resnet_utils.resnet_arg_scope()): [all …]
|
D | vgg.py | 46 from tensorflow.contrib.framework.python.ops import arg_scope 65 with arg_scope( 70 with arg_scope([layers.conv2d], padding='SAME') as arg_sc: 101 with arg_scope( 166 with arg_scope( 231 with arg_scope(
|
D | resnet_utils.py | 45 from tensorflow.contrib.framework.python.ops import arg_scope 255 with arg_scope( 262 with arg_scope([layers.batch_norm], **batch_norm_params): 269 with arg_scope([layers.max_pool2d], padding='SAME') as arg_sc:
|
D | resnet_v2.py | 57 from tensorflow.contrib.framework.python.ops import arg_scope 199 with arg_scope( 202 with arg_scope([layers.batch_norm], is_training=is_training): 212 with arg_scope(
|
D | inception_v1.py | 22 from tensorflow.contrib.framework.python.ops import arg_scope 61 with arg_scope( 64 with arg_scope( 344 with arg_scope( 406 with arg_scope( 409 with arg_scope(
|
D | resnet_v1.py | 63 from tensorflow.contrib.framework.python.ops import arg_scope 195 with arg_scope( 198 with arg_scope([layers.batch_norm], is_training=is_training):
|
D | inception_v3.py | 22 from tensorflow.contrib.framework.python.ops import arg_scope 106 with arg_scope( 156 with arg_scope( 574 with arg_scope( 583 with arg_scope( 720 with arg_scope( 723 with arg_scope(
|
D | inception_v2.py | 22 from tensorflow.contrib.framework.python.ops import arg_scope 82 with arg_scope( 540 with arg_scope( 634 with arg_scope( 637 with arg_scope(
|
D | inception_v1_test.py | 23 from tensorflow.contrib.framework.python.ops import arg_scope 124 with arg_scope(inception_v1.inception_v1_arg_scope()):
|
D | inception_v2_test.py | 23 from tensorflow.contrib.framework.python.ops import arg_scope 120 with arg_scope(inception_v2.inception_v2_arg_scope()):
|
D | inception_v3_test.py | 23 from tensorflow.contrib.framework.python.ops import arg_scope 126 with arg_scope(inception_v3.inception_v3_arg_scope()):
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | rev_block_lib.py | 528 arg_scope, argument 545 with contrib_framework_ops.arg_scope(arg_scope): 595 arg_scope = contrib_framework_ops.current_arg_scope() 620 arg_scope=arg_scope,
|
/external/tensorflow/tensorflow/contrib/slim/ |
D | README.md | 19 …ment scoping](https://www.tensorflow.org/code/tensorflow/contrib/framework/python/ops/arg_scope.py) 42 * [arg_scope](https://www.tensorflow.org/code/tensorflow/contrib/framework/python/ops/arg_scope.py): 43 provides a new scope named `arg_scope` that allows a user to define default 295 [arg_scope](https://www.tensorflow.org/api_docs/python/tf/contrib/framework/arg_scope). 298 `arg_scope`. This functionality is best illustrated by example. Consider the 342 values but doesn't reduce completely the code clutter. By using an `arg_scope`, 346 with slim.arg_scope([slim.conv2d], padding='SAME', 354 As the example illustrates, the use of arg_scope makes the code cleaner, 356 in the arg_scope, they can be overwritten locally. In particular, while 364 with slim.arg_scope([slim.conv2d, slim.fully_connected], [all …]
|
D | __init__.py | 28 from tensorflow.contrib.framework.python.ops.arg_scope import *
|
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/ |
D | rf_benchmark.py | 236 with framework.arg_scope(arg_sc): 477 with slim.arg_scope([slim.batch_norm, slim.dropout],
|
/external/tensorflow/tensorflow/contrib/quantize/python/ |
D | graph_matcher_test.py | 43 with contrib_ops.arg_scope(
|
/external/tensorflow/tensorflow/contrib/framework/ |
D | BUILD | 32 "python/ops/arg_scope.py",
|
/external/tensorflow/tensorflow/contrib/losses/python/losses/ |
D | loss_ops_test.py | 23 from tensorflow.contrib.framework.python.ops import arg_scope 1264 with arg_scope([loss_ops.add_loss], loss_collection=None): 1276 with arg_scope([loss_ops.add_loss], loss_collection=None):
|