以字符串形式返回 AutoGraph 生成的源代码。
用法
tf.autograph.to_code(
entity, recursive=True, experimental_optional_features=None
)
参数
-
entity
Python 可调用或要转换的类。 -
recursive
是否递归转换转换后的函数可能调用的任何函数。 -
experimental_optional_features
None
,一个元组或单个tf.autograph.experimental.Feature
值。
返回
- 转换后的代码为字符串。
示例用法:
def f(x):
if x < 0:
x = -x
return x
tf.autograph.to_code(f)
"...def tf__f(x):..."
另请参阅:tf.autograph.to_graph
。
注意:如果函数已用 tf.function
修饰,则传递其底层 Python 函数,而不是 `tf.function 创建的可调用函数:
@tf.function
def f(x):
if x < 0:
x = -x
return x
tf.autograph.to_code(f.python_function)
"...def tf__f(x):..."
相关用法
- Python tf.autograph.to_graph用法及代码示例
- Python tf.autograph.trace用法及代码示例
- Python tf.autograph.experimental.set_loop_options用法及代码示例
- Python tf.autograph.set_verbosity用法及代码示例
- Python tf.autodiff.ForwardAccumulator用法及代码示例
- Python tf.argsort用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代码示例
- Python tf.summary.scalar用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.raw_ops.TPUReplicatedInput用法及代码示例
- Python tf.raw_ops.Bitcast用法及代码示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代码示例
- Python tf.compat.v1.Variable.eval用法及代码示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.math.special.fresnel_cos用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.autograph.to_code。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。