当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.lite.experimental.authoring.compatible用法及代码示例


使用 TFLite 兼容性检查将 tf.function 包装到可调用函数中。

用法

tf.lite.experimental.authoring.compatible(
    target=None, converter_target_spec=None, **kwargs
)

参数

  • target 一个tf.function来装饰。
  • converter_target_spec target_spec TFLite 转换器参数。
  • **kwargs 装饰器类 _Compatible 的关键字参数。

返回

  • tf.lite.experimental.authoring._Compatible 的可调用对象。

例子:

@tf.lite.experimental.authoring.compatible
@tf.function(input_signature=[
    tf.TensorSpec(shape=[None], dtype=tf.float32)
])
def f(x):
    return tf.cosh(x)

result = f(tf.constant([0.0]))
# COMPATIBILITY WARNING:op 'tf.Cosh' require(s) "Select TF Ops" for model
# conversion for TensorFlow Lite.
# Op:tf.Cosh
#   - tensorflow/python/framework/op_def_library.py:748
#   - tensorflow/python/ops/gen_math_ops.py:2458
#   - <stdin>:6

警告:实验接口,如有更改。

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.lite.experimental.authoring.compatible。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。