我正在尝试将deeplab-v3 +模型转换为TF-Lite,我使用mobilenetv2_coco_voc_trainaug的MobileNet-v2下载预先训练的模态。
使用以下命令覆盖模型:
bazel run --config=opt \
//tensorflow/contrib/lite/toco:toco -- \
--input_file=/tmp/frozen_inference_graph.pb \
--output_file=/tmp/optimized_graph.tflite \
--input_format=TENSORFLOW_GRAPHDEF \
--output_format=TFLITE \
--input_type=QUANTIZED_UINT8 \
--input_arrays=ImageTensor \
--output_arrays=SemanticPredictions \
--input_shapes=1,513,513,3 \
--allow_custom_ops
它已成功覆盖到tflite模型,然后我放到android资源文件夹并加载到Android应用程序,我在gradle中设置如下:
aaptOptions {
noCompress "tflite"
noCompress "lite"
}
使用以下函数加载模型:
/** Memory-map the model file in Assets. */
private MappedByteBuffer loadModelFile(Activity activity) throws IOException {
AssetFileDescriptor fileDescriptor = activity.getAssets().openFd(MODEL_PATH);
FileInputStream inputStream = new FileInputStream(fileDescriptor.getFileDescriptor());
FileChannel fileChannel = inputStream.getChannel();
long startOffset = fileDescriptor.getStartOffset();
long declaredLength = fileDescriptor.getDeclaredLength();
return fileChannel.map(FileChannel.MapMode.READ_ONLY, startOffset, declaredLength);
}
当问题发生tflite = new Interpreter(loadModelFile(activity));
时,异常显示“ MappedByteBuffer不是有效的flatbuffer模型”
任何人都可以帮助弄清楚我做错了什么过程? toco工具中有错误吗?