无法运行图形文件。我能够提供图形文件,但是当我运行推理时,它显示了在Android探查器中的高内存分配,并且该应用程序冻结,并且在达到最大应用程序关闭次数后突然关闭。因此代码会一直运行到我得到日志“成功喂入图形”的位置。我输入的图片大小是256x256 rgb图片。
tensorFlowInferenceInterface.feed(INPUT_NODE1,pixels,1,IMAGE_SIZE,IMAGE_SIZE,3);
tensorFlowInferenceInterface.feed(INPUT_NODE2,pixels,1,IMAGE_SIZE,IMAGE_SIZE,3);
Log.d("loaded","feeded the graph successfully");
// Time to run the graph file
tensorFlowInferenceInterface.run(new String[] {OUTPUT_NODE});
Log.d("loaded","running the graph successfully");