LemmaSharp-std
1.0.0
See the version list below for details.
dotnet add package LemmaSharp-std --version 1.0.0
NuGet\Install-Package LemmaSharp-std -Version 1.0.0
<PackageReference Include="LemmaSharp-std" Version="1.0.0" />
paket add LemmaSharp-std --version 1.0.0
#r "nuget: LemmaSharp-std, 1.0.0"
// Install LemmaSharp-std as a Cake Addin #addin nuget:?package=LemmaSharp-std&version=1.0.0 // Install LemmaSharp-std as a Cake Tool #tool nuget:?package=LemmaSharp-std&version=1.0.0
dotnet standard LemmaGenerator
LemmaGenerator creates lemmatizers for several European languages that you can customize.
This package is available on Nuget:
This project was created by Matjaz Jursic and was retrieved on http://lemmatise.ijs.si/. He's the expert and did a great job so for all questions you should check his website.
Quickstart
If you just want to lemmatize words, you want to check the precompiled lemmatizer files here: https://github.com/hc-ro/LemmaGenerator-std/tree/master/Test/Data.
Load the selected file in a stream a build a lemmatizer with it:
var dataFilepath = "/path/to/the/lemmatizer/file";
var stream = File.OpenRead(dataFilePath);
var lemmatizer = new Lemmatizer(stream);
var result = lemmatizer.Lemmatize("words");
Console.WriteLine(result);
// prints "word"
Note: Since this is an old Nuget, some newer environments may not support directly referencing the namespace after installing it via nuget.org. In such cases, you can add the .dll file from http://lemmatise.ijs.si/Software/Version3 into References of your project.
Customizing the lemmatizer
As mentioned above, you can customize your lemmatizer by using your own dictionary { word, lemma }. For more information, check Matjaz's website.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- LZMA-SDK (>= 18.1.0)
- System.Configuration.ConfigurationManager (>= 4.5.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on LemmaSharp-std:
Package | Downloads |
---|---|
LemmaSharpPreBuilt-std
Package Description |
|
Sysopoly.TagCloud
An updated .NET tag-cloud computation library based on LemmaSharp. |
GitHub repositories
This package is not used by any popular GitHub repositories.