每个人!
我正在尝试基于 Windows-Machine-Learning github 的 SnapCandy 示例制作推理应用程序。
我的 ONNX 模型文件在 pytorch 1.10 中导出。Onnx 格式:v4,opset v9
Windows 版本:Win10 21H2 (Build# 19044.1466)
显卡:NDVIA 2060(驱动版本:8.1.961.0,VRAM 6GB)
代码:m_inferenceDeviceSelected = _useGPU?LearningModelDeviceKind.DirectXHighPerformance:LearningModelDeviceKind.Cpu;m_session = new LearningModelSession(m_model, new LearningModelDevice(m_inferenceDeviceSelected));
如果 _useGPU 为真(Gpu 模式),则发生 System.AccessViolationException。
但如果 _useGPU 为 false(Cpu 模式),则推理良好。
我该如何解决这个异常?
提前致谢!