Android中运行的.tflite模型无法在iOS应用程序上运行
为 out
提供NULL uint8_t* out = interpreter->typed_tensor<uint8_t>(input);
我可以知道 out = NULL
的所有可能性我可以知道什么输入导致在tensorflow-lite上提供的示例输入= 88 ,我得到输入= 27
int input = interpreter->inputs()[0];
答案 0 :(得分:0)
我已经解决了这个问题,即使用了float而不是uint8_t
float* out = interpreter->typed_tensor<float>(input);
但仍在等待回答这个问题
我是否知道提供示例的输入原因是什么? tensorflow-lite输入= 88,我得到输入= 27
int input = interpreter-&gt; inputs()[0];