Tflite.runModelOnImage参数说明
Posted
技术标签:
【中文标题】Tflite.runModelOnImage参数说明【英文标题】:Explanation of parameters of Tflite.runModelOnImage 【发布时间】:2021-12-31 08:44:52 【问题描述】:有人可以解释这段代码的每一行吗?
比如imageMean
、imageStd
、threshold
的目的是什么。
我真的找不到这个文档
Tflite.runModelOnImage(
imageMean: 0.0,
imageStd: 255.0,
numResults: 2,
threshold: 0.1,
asynch: true,
path: image.path,
)
这里是官方包:https://pub.dev/packages/tflite
【问题讨论】:
【参考方案1】:在执行图像分类任务时,根据数据集均值和标准差对图像像素值进行归一化通常很有用。关于我们为什么需要这样做的更多原因可以在这个问题中找到:Why do we need to normalize the images before we put them into CNN?。
imageMean
是要在模型上运行的图像数据集的平均像素值,imageStd
是标准差。 threshold
值代表 classification threshold,例如高于阈值的概率值可表示为“分类为X类”,低于阈值的概率值表示“未分类为X类”。
【讨论】:
以上是关于Tflite.runModelOnImage参数说明的主要内容,如果未能解决你的问题,请参考以下文章