用法
get_signature_list()
返回
- 字典结构中的 SignatureDef 详细信息列表。它以 SignatureDef 方法名称为键,该值包含输入和输出字典。
获取模型中的 SignatureDef 列表。
例子,
signatures = interpreter.get_signature_list()
print(signatures)
# {
# 'add':{'inputs':['x', 'y'], 'outputs':['output_0']}
# }
Then using the names in the signature list you can get a callable from
get_signature_runner().
相关用法
- Python tf.lite.Interpreter.get_signature_runner用法及代码示例
- Python tf.lite.Interpreter.tensor用法及代码示例
- Python tf.lite.Interpreter.resize_tensor_input用法及代码示例
- Python tf.lite.Interpreter用法及代码示例
- Python tf.lite.experimental.QuantizationDebugger用法及代码示例
- Python tf.lite.TFLiteConverter用法及代码示例
- Python tf.lite.experimental.authoring.compatible用法及代码示例
- Python tf.lite.experimental.load_delegate用法及代码示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代码示例
- Python tf.linalg.LinearOperatorIdentity.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorPermutation.solve用法及代码示例
- Python tf.linalg.band_part用法及代码示例
- Python tf.linalg.LinearOperatorKronecker.diag_part用法及代码示例
- Python tf.linalg.lu_matrix_inverse用法及代码示例
- Python tf.linalg.LinearOperatorToeplitz.matvec用法及代码示例
- Python tf.linalg.LinearOperatorBlockLowerTriangular.solvevec用法及代码示例
- Python tf.linalg.LinearOperatorLowerTriangular.matvec用法及代码示例
- Python tf.linalg.LinearOperatorCirculant2D.solve用法及代码示例
- Python tf.linalg.LinearOperatorCirculant3D.diag_part用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.lite.Interpreter.get_signature_list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。