You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I chose "Bug report" related to your description: "Create a report to help us improve"
Describe the bug
If I try to get samples/LanguageDetection/Program.cs running, then:
the cld2LanguageDetector perfectly works 😀,
the FastTextLanguageDetector throws an exception without offering useful information 😞, it just says: System.IO.FileNotFoundException: Unable to find the specified file. (Of course, it should tell the path to the file which can not be found)
I have this situation:
I have downloaded the NuGet Language Model: Catalyst.Models.English
The English language Model is here: C:\Catalyst\LanguageModels\Catalyst.Models.English.dll
I set the DiskStorage and call FastTextLanguageDetector:
Storage.Current = new DiskStorage(@"C:\Catalyst\LanguageModels");
var fastTextLanguageDetector = await FastTextLanguageDetector.FromStoreAsync(Language.Any, Version.Latest, "");
Why is FastTextLanguageDetector not able to find the Language model?
Thanks a lot, kind regards,
Thomas
The text was updated successfully, but these errors were encountered:
Hello
I chose "Bug report" related to your description: "Create a report to help us improve"
Describe the bug
If I try to get
samples/LanguageDetection/Program.cs
running, then:cld2LanguageDetector
perfectly works 😀,FastTextLanguageDetector
throws an exception without offering useful information 😞, it just says:System.IO.FileNotFoundException: Unable to find the specified file.
(Of course, it should tell the path to the file which can not be found)
I have this situation:
C:\Catalyst\LanguageModels\Catalyst.Models.English.dll
Why is
FastTextLanguageDetector
not able to find the Language model?Thanks a lot, kind regards,
Thomas
The text was updated successfully, but these errors were encountered: