HXDM 看看是不是报的这个错
INVALID_ARGUMENT : Invalid rank for input: modelInput Got: 3 Expected: 4
Please fix either the inputs or the model.
modelInput
是我 onnx 模型输入的名字
这个错,意思很简单,意思是 onnx 模型的输入是
[1, 3, 224, 224]
结果你送入了
[3, 224, 224]
一个维度是4,一个维度是3,所以是INVALID ARGUMENT(无效的输入)文章来源:https://www.toymoban.com/news/detail-535891.html
我记录这个错,主要是 Invalid rank for input,他要是说是 Invalid shape for input,我就秒懂,但是这个 rank 该怎么翻译呢? 矩阵的秩? 阶?文章来源地址https://www.toymoban.com/news/detail-535891.html
到了这里,关于INVALID_ARGUMENT : Invalid rank for input: modelInput Got: 3 Expected: 4 Please fix either the input的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!