Introducing LiteRT : Google's high-performance runtime for on-device AI, formerly known as TensorFlow Lite.
Learn more
Send feedback
tf.lite.experimental.authoring.compatible
Stay organized with collections
Save and categorize content based on your preferences.
Wraps tf.function
into a callable function with TFLite compatibility checking.
tf . lite . experimental . authoring . compatible (
target = None , converter_target_spec = None , ** kwargs
)
Used in the notebooks
Example:
@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
Warning: Experimental interface, subject to change.
Args
target
A tf.function
to decorate.
converter_target_spec
target_spec of TFLite converter parameter.
**kwargs
The keyword arguments of the decorator class _Compatible.
Returns
A callable object of tf.lite.experimental.authoring._Compatible
.
Send feedback
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 2024-09-04 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-04 UTC."],[],[]]