【发布时间】:2020-06-29 21:39:02
【问题描述】:
我正在尝试将两个输出的 keras 模型转换为可在 Google Coral 上运行的已编译、量化的 tflite 模型。我之前在一个只有 1 个输出的 Keras 网络上使用过这个确切的过程,它可以工作。
这是我的过程:
import tensorflow as tf
from tensorflow.keras.applications.mobilenet import preprocess_input
file = 'path/to/model-01.h5'
model = tf.keras.models.load_model(file)
converter = tf.lite.TFLiteConverter.from_keras_model(model)
converter.optimizations = [tf.lite.Optimize.DEFAULT]
os.chdir('/path/to/image/directories')#Where image directories are
directory = os.listdir()
directory
def representative_dataset_gen():
for i in directory:
count = 0
os.chdir(i)
files = os.listdir()
print(i)
for j in files:
if count<500:
img = Image.open(j)
width, height = img.size
bands = img.getbands()
array = np.asarray(img, dtype=np.float32)
array = preprocess_input(array)
count=count+1
yield[np.expand_dims(array, axis=0)]
else:
break
os.chdir('../')
converter.representative_dataset = representative_dataset_gen
converter.target_spec.supported_ops = [tf.lite.OpsSet.TFLITE_BUILTINS_INT8]
converter.inference_input_type = tf.int8 # or tf.uint8
converter.inference_output_type = tf.int8 # or tf.uint8
tflite_quant_model = converter.convert()
tflite_model_dir = pathlib.Path('where/i/want/to/save/')
tflite_quant_model_file = tflite_model_dir/'quantized.tflite'
tflite_quant_model_file.write_bytes(tflite_quant_model)
然后我尝试在终端中使用 edgetpu_compiler
edgetpu_compiler quantizedmodel.tflite
并收到此错误:
ERROR: :129 std::abs(input_product_scale - bias_scale) <= 1e-6 * std::min(input_product_scale, bias_scale) was not true.
ERROR: Node number 40 (FULLY_CONNECTED) failed to prepare.
Internal compiler error. Aborting!
我在尝试验证模型时尝试interpreter.allocate_tensors() 时也遇到同样的错误。
#Load Model
interpreter = tf.lite.Interpreter(model_path='path/to/model/quantized.tflite')
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()
interpreter.resize_tensor_input(input_details[0]['index'], (32, 200, 200, 3))
interpreter.resize_tensor_input(output_details[0]['index'], (32, 5))
interpreter.allocate_tensors()
返回
RuntimeError Traceback (most recent call last)
in
2 interpreter.resize_tensor_input(input_details[0]['index'], (32, 200, 200, 3))
3 interpreter.resize_tensor_input(output_details[0]['index'], (32, 5))
----> 4 interpreter.allocate_tensors()
5
~/Software/anaconda3/envs/Tensorflow2/lib/python3.7/site-packages/tensorflow_core/lite/python/interpreter.py in allocate_tensors(self)
245 def allocate_tensors(self):
246 self._ensure_safe()
--> 247 return self._interpreter.AllocateTensors()
248
249 def _safe_to_run(self):
~/Software/anaconda3/envs/Tensorflow2/lib/python3.7/site-packages/tensorflow_core/lite/python/interpreter_wrapper/tensorflow_wrap_interpreter_wrapper.py in AllocateTensors(self)
108
109 def AllocateTensors(self):
--> 110 return _tensorflow_wrap_interpreter_wrapper.InterpreterWrapper_AllocateTensors(self)
111
112 def Invoke(self):
RuntimeError: tensorflow/lite/kernels/kernel_util.cc:106 std::abs(input_product_scale - bias_scale) <= 1e-6 * std::min(input_product_scale, bias_scale) was not true.Node number 40 (FULLY_CONNECTED) failed to prepare.
我使用的是张量流 2.2.0
【问题讨论】:
标签: python tensorflow keras tensorflow-lite google-coral