C# Ubuntu MATE ARM32上的Azure语音SDK意图识别错误

C# Ubuntu MATE ARM32上的Azure语音SDK意图识别错误,c#,ubuntu,.net-core,azure-speech,C#,Ubuntu,.net Core,Azure Speech,我正在尝试使用Ubuntu MATE ARM32上的语音SDK(在Raspberry Pi上)进行基本的意图识别。他们说版本1.11应该可以工作,但我得到以下错误: Unhandled exception. System.ApplicationException: Exception with an error code: 0x8 (SPXERR_FILE_OPEN_FAILED) at Microsoft.CognitiveServices.Speech.Internal.SpxExce

我正在尝试使用Ubuntu MATE ARM32上的语音SDK(在Raspberry Pi上)进行基本的意图识别。他们说版本1.11应该可以工作,但我得到以下错误:

Unhandled exception. System.ApplicationException: Exception with an error code: 0x8 (SPXERR_FILE_OPEN_FAILED)
   at Microsoft.CognitiveServices.Speech.Internal.SpxExceptionThrower.ThrowIfFail(IntPtr hr)
   at Microsoft.CognitiveServices.Speech.KeywordRecognitionModel.FromFile(String fileName)
   at SmartHomeVoice.Services.ListeningService.StartAsync(CancellationToken cancellationToken) in E:\Efraim's stuff\SmartHomeVoice\SmartHomeVoice\Services\ListeningService.cs:line 142
   at Microsoft.Extensions.Hosting.Internal.Host.StartAsync(CancellationToken cancellationToken)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(IHost host, CancellationToken token)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.RunAsync(IHost host, CancellationToken token)
   at Microsoft.Extensions.Hosting.HostingAbstractionsHostExtensions.Run(IHost host)
   at SmartHomeVoice.Program.Main() in E:\Efraim's stuff\SmartHomeVoice\SmartHomeVoice\Program.cs:line 19
Aborted
我使用的是C#和.Net Core 3.1,我在Pi中插入了一个网络摄像头,通过GUI将其设置为默认音频输入。
Ubuntu版本是18.04。

这个问题已经解决。问题是我没有提供关键字表文件的绝对路径。

我们鼓励您回答自己的问题并接受答案。