スクリプトでtfliteモデルをロードするにはどうすればいいですか? 質問する

スクリプトでtfliteモデルをロードするにはどうすればいいですか? 質問する

私はファイルをファイル.pbに変換しましたtfliteバゼル. ここで、このモデルを Python スクリプトにロードして、tflite正しい出力が得られるかどうかをテストしたいと思います。

ベストアンサー1

使用できますTensorFlow Lite Python インタープリターtflite モデルを Python シェルに読み込み、入力データでテストします。

コードは次のようになります:

import numpy as np
import tensorflow as tf

# Load TFLite model and allocate tensors.
interpreter = tf.lite.Interpreter(model_path="converted_model.tflite")
interpreter.allocate_tensors()

# Get input and output tensors.
input_details = interpreter.get_input_details()
output_details = interpreter.get_output_details()

# Test model on random input data.
input_shape = input_details[0]['shape']
input_data = np.array(np.random.random_sample(input_shape), dtype=np.float32)
interpreter.set_tensor(input_details[0]['index'], input_data)

interpreter.invoke()

# The function `get_tensor()` returns a copy of the tensor data.
# Use `tensor()` in order to get a pointer to the tensor.
output_data = interpreter.get_tensor(output_details[0]['index'])
print(output_data)

上記のコードはTensorFlow Lite公式ガイドからのものです詳しい情報については、これ

おすすめ記事