我正在尝试使用 WinML 加载 ONNX 模型,代码如下:
private async Task InitializeModelAsync()
{
var path = @"ms-appx:///Assets/FER-Emotion-Recognition.onnx";
var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(path));
model = await CNTKGraphModel.CreateCNTKGraphModel(file);
}
该项目编译正常,但在运行时我得到一个System.IO.FileNotFoundException:
该系统找不到指定的文件。
我仔细检查了,但文件确实在正确的文件夹中。我做错什么了?