具体报错信息为:ONNX Runtime error:Load model from D:\code\onnx\test\test\denoiser_model_gpu.onnx failed:Type Error:Type parameter (T) of 0ptype (Where) bound to different types (tensor(float) and tensor(double) in node(/Where)
通过查询相关内容发现是因为数据类型不一致导致的,onnx不支持float64位的数据,但是我在导出ONNX的时候已经将数据类型转成了float32,为什么还是报错呢?