Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPoint committed May 15, 2016
1 parent 7212c58 commit 9936972
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ LemmaGenerator

LemmaGenerator creates lemmatizers for several European languages that you can customize.

This project was created by Matjaz Jursic and was retrieved on https://lemmatise.ijs.si/. He's the expert and did a great job so for all questions you should check his website.

I just added this project to git to be able to fork it. In particular, I created the associated nuget package available at https://www.nuget.org/packages/LemmaGenerator/
This package is available on Nuget:
> Install-Package LemmaGenerator
This project was created by Matjaz Jursic and was retrieved on https://lemmatise.ijs.si/. He's the expert and did a great job so for all questions you should check his website.

Quickstart
----------------
Expand All @@ -15,17 +15,17 @@ If you just want to lemmatize words, you want to check the precompiled lemmatize

Load the selected file in a stream a build a lemmatizer with it:

var path = "/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"

```csharp
var path = "/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"
```

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 https://lemmatise.ijs.si/.
For more information, check [Matjaz's website](https://lemmatise.ijs.si/).

0 comments on commit 9936972

Please sign in to comment.