了解TensorFlow模型输入

时间:2020-08-22 00:28:01

标签: python image tensorflow model byte

根据该TF模型的描述:https://drive.google.com/file/d/1VFC_wIpw4O7xBOiTgUldl79d9LA-LsnA/view,该模型期望图像输入大小为192x192。运行Python脚本来确定TF输入可以帮助我们:

INPUT
[  1 192 192   3]
<class 'numpy.float32'>

当尝试将图像输入添加到模型时,出现以下错误:

Provided data count 23040 must match the required count 442368.

我试图了解如何从192x192的图像中获取442368的计数(计算是什么?),以及Python脚本产生的输入意味着什么。

谢谢您的帮助!

0 个答案:

没有答案