我有一个量化的 TensorflowLite 模型,我正在将其加载到运行 Android 11 的 Pixel 3 上。我使用 Tensorflow Lite 2.5 构建了模型,并且我正在使用适用于 Android 的 Tensorflow 的夜间构建。
我正在使用默认提供的 NNAPI 委托初始化 TFLite 解释器。
但是,当我加载模型时,我从 NNAPI 收到以下错误:
/OperationsUtils(16219): NN_RET_CHECK failed (frameworks/ml/nn/common/OperationsUtils.cpp:111): Operation QUANTIZE with inputs {TENSOR_FLOAT32} and outputs {TENSOR_QUANT8_ASYMM} is only supported since HAL version 1.2 (validating using HAL version 1.0)
E/Utils (16219): Validation failed for operation QUANTIZE
E/OperationsUtils(16219): NN_RET_CHECK failed (frameworks/ml/nn/common/OperationsUtils.cpp:111): Operation QUANTIZE with inputs {TENSOR_FLOAT32} and outputs {TENSOR_QUANT8_ASYMM} is only supported since HAL version 1.2 (validating using HAL version 1.0)
Android 11 应该支持 NNAPI 1.2。TensorFlow 或 Android 是否缺少一些参数来支持 NNAPI 上的更高版本?
作为参考,这是我的 gradle 文件中的依赖项:
dependencies {
// snip
implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly-SNAPSHOT'
implementation 'org.tensorflow:tensorflow-lite-gpu:0.0.0-nightly-SNAPSHOT'
}