stemmer 2.0.0 copy "stemmer: ^2.0.0" to clipboard
stemmer: ^2.0.0 copied to clipboard

outdated

A NLTK-port to perform stemming in Dart / Flutter and reduce words to its base.

stemmer #

This package implements a stemming algorithm in Dart. Currently, it only supports PorterStemmer. It is a port of the exceptional Python NLTK library.

About #

This package allows for stemming of words. This process reduces a word to their base form. In many cases, the word will not even be recognisable. Where, for example, running would be stemmed to run, which is still a valid word, yet agreed would be stemmed to agre.

Example #

import 'package:stemmer/stemmer.dart';

PorterStemmer stemmer = PorterStemmer();
stemmer.stem('running');
// run
11
likes
0
pub points
76%
popularity

Publisher

unverified uploader

A NLTK-port to perform stemming in Dart / Flutter and reduce words to its base.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

test

More

Packages that depend on stemmer