以字符串形式返回 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。