View source on GitHub |
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
as_tuple()
call_options
call_options()
Returns the corresponding options to be used for recursive conversion.
to_ast
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.
Returns | |
---|---|
ast.Node |
uses
uses(
feature
)
__eq__
__eq__(
other
)
Return self==value.