gpt4 book ai didi

python - 我可以获得 TensorFlow Lite 模型的指标吗?

转载 作者:行者123 更新时间:2023-12-01 06:52:03 24 4
gpt4 key购买 nike

我一直在研究一个具有自定义指标的复杂 Keras 模型,最近我将其转换为 TensorFlow lite。这些模型并不完全相同,输出也不同,但是很难评估,因为输出是大小为 128 的张量。有什么方法可以在此模型上运行我的自定义指标?我一直在使用Tf 1.14。下面是一些相关代码。

# compiler and train the model
model.save('model.h5')

# save the model in TFLite
converter = tf.lite.TFLiteConverter.from_keras_model_file('model.h5', custom_objects={'custom_metric': custom_metric})
tflite_model = converter.convert()
open('model.tflite', 'wb').write(tflite_model)

# run the model
interpreter = tf.lite.Interpreter(model_path='model.tflite')
interpreter.allocate_tensors()
input_dets = interpreter.get_input_details()
output_dets = interpreter.get_output_details()
input_shape = input_dets[0]['shape']
input_data = np.array(np.random.random_sample(input_shape), dtype=np.float32)
interpreter.set_tensor(input_dets[0]['index'], input_data)
interpreter.invoke()

最佳答案

这些模型应该是不同的,因为转换器会进行图形转换(例如熔断激活和折叠批量归一化),并且生成的图形仅针对推理场景。

要运行指标:解释器提供 API 来获取输出值(作为数组):

output = interpreter.tensor(interpreter.get_output_details()[0]["index"])

然后将指标应用于输出。

关于python - 我可以获得 TensorFlow Lite 模型的指标吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58942954/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com