lemmatizerx 1.0.0 copy "lemmatizerx: ^1.0.0" to clipboard
lemmatizerx: ^1.0.0 copied to clipboard

Lemmatizer for text in English. Inspired by Python's nltk.corpus.reader.wordnet.morphy

lemmatizerx #

Lemmatizer for text in English. Inspired by Python's nltk.corpus.reader.wordnet.morphy.

Installing #

In your pubspec.yaml:

dependencies:
  lemmatizerx: ^0.0.3

How To Use #

import  'package:lemmatizerx/lemmatizerx.dart';

Lemmatizer lemmatizer = Lemmatizer();

//
// Lookup single lemma
//

Lemma lemma = lemmatizer.lemma('books', POS.NOUN);
print(lemma.pos); // POS.NOUN
print(lemma.form); // books
print(lemma.lemmas); // [book]
print(lemma); // POS.NOUN books [book]

lemma = lemmatizer.lemma('loveliest', POS.ADJ);
print(lemma.pos); // POS.ADJ
print(lemma.form); // loveliest
print(lemma.lemmas); // [lovely]
print(lemma); // POS.ADJ loveliest [lovely]

//
// Lookup single lemma and fail
//

lemma = lemmatizer.lemma('wordDoesNotExist', POS.NOUN);
print(lemma.lemmasFound); // false
print(lemma.lemmasNotFound); // true

//
// Lookup multiple lemmas
//

List<Lemma> lemmas = lemmatizer.lemmas('meeting');

print(lemmas); // [POS.NOUN meeting [meeting], POS.VERB meeting [meet]]

Lemma noun = lemmas.firstWhere((lemma) => lemma.pos == POS.NOUN);
Lemma verb = lemmas.firstWhere((lemma) => lemma.pos == POS.VERB);

print(noun.lemmas); // [meeting]
print(verb.lemmas); // [meet]

Powershell #

> .\bin\lemma.ps1 meeting

[POS.NOUN meeting [meeting], POS.VERB meeting [meet]]

Command line #

Activate:

dart pub global activate lemmatizerx

Deactivate:

dart pub global deactivate lemmatizerx

> lemma meeting

[POS.NOUN trees [tree], POS.VERB trees [tree]]

Bugs and Requests #

If you encounter any problems feel free to open an issue. If you feel the library is missing a feature, please raise a ticket on Github and I'll look into it. Pull request are also welcome.

https://github.com/xErik/lemmatizerx/issues

Inspirations and Sources #

Lemmatizer: The original package

https://pub.dev/packages/lemmatizer

Stopwords (use their lemma-data, later?)

https://lexically.net/wordsmith/support/lemma_lists.html

License #

This project is licensed under the MIT License - see the LICENSE file for details

5
likes
130
pub points
70%
popularity

Publisher

verified publishernovelplotter.com

Lemmatizer for text in English. Inspired by Python's nltk.corpus.reader.wordnet.morphy

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on lemmatizerx