tf.contrib.autograph.ConversionOptions
Stay organized with collections
Save and categorize content based on your preferences.
Immutable container for global conversion flags.
tf.contrib.autograph.ConversionOptions(
recursive=False, user_requested=False, internal_convert_user_code=True,
optional_features=tf.autograph.experimental.Feature.ALL
)
Attributes |
recursive
|
bool, whether to recursively convert any user functions or
classes that the converted function may use.
|
user_requested
|
bool, whether the conversion was explicitly requested by
the user, as opposed to being performed as a result of other logic. This
value always auto-resets resets to False in child conversions.
|
optional_features
|
Union[Feature, Set[Feature]], controls the use of
optional features in the conversion process. See Feature for available
options.
|
Methods
as_tuple
View source
as_tuple()
call_options
View source
call_options()
Returns the corresponding options to be used for recursive conversion.
to_ast
View source
to_ast()
Returns a representation of this object as an AST node.
The AST node encodes a constructor that would create an object with the
same contents.
uses
View source
uses(
feature
)
__eq__
View source
__eq__(
other
)
Return self==value.
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.autograph.ConversionOptions\n\n\u003cbr /\u003e\n\n|----------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L145-L233) |\n\nImmutable container for global conversion flags. \n\n tf.contrib.autograph.ConversionOptions(\n recursive=False, user_requested=False, internal_convert_user_code=True,\n optional_features=tf.autograph.experimental.Feature.ALL\n )\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Attributes ---------- ||\n|---------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `recursive` | bool, whether to recursively convert any user functions or classes that the converted function may use. |\n| `user_requested` | bool, whether the conversion was explicitly requested by the user, as opposed to being performed as a result of other logic. This value always auto-resets resets to False in child conversions. |\n| `optional_features` | Union\\[Feature, Set\\[Feature\\]\\], controls the use of optional features in the conversion process. See Feature for available options. |\n\n\u003cbr /\u003e\n\nMethods\n-------\n\n### `as_tuple`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L176-L178) \n\n as_tuple()\n\n### `call_options`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L194-L200) \n\n call_options()\n\nReturns the corresponding options to be used for recursive conversion.\n\n### `to_ast`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L202-L233) \n\n to_ast()\n\nReturns a representation of this object as an AST node.\n\nThe AST node encodes a constructor that would create an object with the\nsame contents.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ||\n|---|---|\n| ast.Node ||\n\n\u003cbr /\u003e\n\n### `uses`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L190-L192) \n\n uses(\n feature\n )\n\n### `__eq__`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v1.15.0/tensorflow/python/autograph/core/converter.py#L183-L185) \n\n __eq__(\n other\n )\n\nReturn self==value."]]