tf.contrib.framework.arg_scope
Stay organized with collections
Save and categorize content based on your preferences.
Stores the default arguments for the given set of list_ops.
@tf_contextlib.contextmanager
tf.contrib.framework.arg_scope(
list_ops_or_scope, **kwargs
)
For usage, please see examples at top of the file.
Args |
list_ops_or_scope
|
List or tuple of operations to set argument scope for or
a dictionary containing the current scope. When list_ops_or_scope is a
dict, kwargs must be empty. When list_ops_or_scope is a list or tuple,
then every op in it need to be decorated with @add_arg_scope to work.
|
**kwargs
|
keyword=value that will define the defaults for each op in
list_ops. All the ops need to accept the given set of arguments.
|
Yields:
the current_scope, which is a dictionary of {op: {arg: value} }
Raises |
TypeError
|
if list_ops is not a list or a tuple.
|
ValueError
|
if any op in list_ops has not be decorated with @add_arg_scope.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[null,null,["Last updated 2020-10-01 UTC."],[],[],null,["# tf.contrib.framework.arg_scope\n\n\u003cbr /\u003e\n\n|-----------------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/contrib/framework/python/ops/arg_scope.py#L110-L162) |\n\nStores the default arguments for the given set of list_ops. \n\n @tf_contextlib.contextmanager\n tf.contrib.framework.arg_scope(\n list_ops_or_scope, **kwargs\n )\n\nFor usage, please see examples at top of the file.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|---------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `list_ops_or_scope` | List or tuple of operations to set argument scope for or a dictionary containing the current scope. When list_ops_or_scope is a dict, kwargs must be empty. When list_ops_or_scope is a list or tuple, then every op in it need to be decorated with @add_arg_scope to work. |\n| `**kwargs` | keyword=value that will define the defaults for each op in list_ops. All the ops need to accept the given set of arguments. |\n\n\u003cbr /\u003e\n\n#### Yields:\n\nthe current_scope, which is a dictionary of {op: {arg: value} }\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Raises ------ ||\n|--------------|-----------------------------------------------------------------|\n| `TypeError` | if list_ops is not a list or a tuple. |\n| `ValueError` | if any op in list_ops has not be decorated with @add_arg_scope. |\n\n\u003cbr /\u003e"]]