gpt4 book ai didi

为 runForMultipleInputsOutputs 分配内存时发生 Java TFLITE 错误

转载 作者:行者123 更新时间:2023-12-02 00:24:27 25 4
gpt4 key购买 nike

我在为 Android Java 的 TFLITE 解释器准备输出时遇到错误。该模型有 1 个输入和 4 个输出。

interpreter.runForMultipleInputsOutputs(input, map_of_indices_to_outputs);

E/Run multiple: Internal error: Unexpected failure when preparing tensor allocations: tensorflow/lite/kernels/tile.cc:53 num_dimensions != num_multipliers (1 != 2)Node number 4 (TILE) failed to prepare.

输出要求是4个 float 组的列表:

[ [1x1],[1x2], [1x2], [1x2] ]

Python 中预测的输出是:

In [56] output = model.predict(new_observation_scaled)

Out[56]:
[array([[0.]], dtype=float32),
array([[137.66626, 335.7148 ]], dtype=float32),
array([[0.16666616, 0.40643442]], dtype=float32),
array([[9.9915421e-01, 8.4577635e-04]], dtype=float32)]

所以我在JAVA中准备了一个对象列表:

float [][] output0 = new float [1][1];
float [][] output1 = new float [1][2];
float [][] output2 = new float [1][2];
float [][] output3 = new float [1][2];
Object[] outputs = {output0,output1,output2,output3};

Map<Integer, Object> map_of_indices_to_outputs = new HashMap<>();
map_of_indices_to_outputs.put(0, output0);
map_of_indices_to_outputs.put(1, output1);
map_of_indices_to_outputs.put(2, output2);
map_of_indices_to_outputs.put(3, output3);

你能帮我找出错误吗?

编辑:这是从 tf 2.0-rc1 生成的 tflite 文件中读取的解释器详细信息:

f='.\\models\\pdb_20190923-163632.tflite'

interpreter = tf.lite.Interpreter(model_path=f)

interpreter
Out[16]: <tensorflow.lite.python.interpreter.Interpreter at 0x20684c69608>

interpreter.get_input_details()
Out[17]:
[{'name': 'RSSI',
'index': 4,
'shape': array([ 1, 15]),
'dtype': numpy.float32,
'quantization': (0.0, 0)}]

interpreter.get_output_details()
Out[18]:
[{'name': 'Identity',
'index': 0,
'shape': array([1, 1]),
'dtype': numpy.float32,
'quantization': (0.0, 0)},
{'name': 'Identity_1',
'index': 1,
'shape': array([1, 2]),
'dtype': numpy.float32,
'quantization': (0.0, 0)},
{'name': 'Identity_2',
'index': 2,
'shape': array([1, 2]),
'dtype': numpy.float32,
'quantization': (0.0, 0)},
{'name': 'Identity_3',
'index': 3,
'shape': array([1, 2]),
'dtype': numpy.float32,
'quantization': (0.0, 0)}]

最佳答案

我得到了问题的解决方案:

与输出需要列表一样,输入也需要列表:

Object[] outputs = {output0,output1,output2,output3};
Object[] inputs = {input};
interpreter.runForMultipleInputsOutputs(inputs, map_of_indices_to_outputs);

关于为 runForMultipleInputsOutputs 分配内存时发生 Java TFLITE 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58061111/

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