🚀 Catalyst is a C# Natural Language Processing library built for speed. Inspired by spaCy's design, it brings pre-trained models, out-of-the box support for training word and document embeddings, and flexible entity recognition models.
Describe the bug
When attempting to do language detection using the ` class, it fails to load the model from the embedded resource. The exception throws with the following message:The archive entry was compressed using an unsupported compression method.`
To Reproduce
Just execute the below lines of code:
Catalyst.Models.English.Register();
var cld2LanguageDetector = await LanguageDetector.FromStoreAsync(Language.Any, Version.Latest, "");
Expected behavior
The resource would be deflated as expected and the langauge detector would simply work as advertised..
Screenshots
Using Rider, I debugged into the failing method:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Describe the bug When attempting to do language detection using the
` class, it fails to load the model from the embedded resource. The exception throws with the following message:
The archive entry was compressed using an unsupported compression method.`To Reproduce Just execute the below lines of code:
Expected behavior The resource would be deflated as expected and the langauge detector would simply work as advertised..
Screenshots Using Rider, I debugged into the failing method:
Additional context Tested with: