text_analysis 0.17.0
text_analysis: ^0.17.0 copied to clipboard
Tokenize text, compute readibility scores for a document and evaluate similarity of terms.
0.17.0 #
BREAKING CHANGES
Breaking changes #
- Changed algorithm for calculating
TermSimilarity.termSimilarityto apply weighting
New #
- Added class
SimilarityIndex. - Added String extension method
getSuggestions. - Added class method
TermSimilarity.getSuggestions. - Added String extension method
lengthSimilarities. - Added class method
TermSimilarity.lengthSimilarities. - Added String extension method
editSimilarities. - Added class method
TermSimilarity.editSimilarities. - Added String extension method
jaccardSimilarities. - Added class method
TermSimilarity.jaccardSimilarities. - Added String extension method
termSimilarities. - Added class method
TermSimilarity.termSimilarities. - Added function definition
KGramsMap. - Added extension
Set<KGram> toKGramsMap([int k = 2])onIterable<String>. - Added enumeration
PartOfSpeech. - Added enumeration
PoSTag.
Updated #
- Dependencies.
- Tests.
- Documentation
- Examples.
0.16.0 #
BREAKING CHANGES
Breaking changes #
- Removed
stopWordsandabbreviationsfields fromTextAnalyzer. - Changed implementation of
TextTokenizer.tokenizeto match removal ofstopWordsandabbreviationsfromTextAnalyzer. - Moved all constants from
EnglishtoEnglishConstants. - Removed parameters
stemmer,lemmatizer,stopWordsandabbreviationsfromEnglish. Extend theEnglishclass to use different values for these fields. - Changed implementation of
English.termSplitter. - Changed signature of
TextTokenizerunnamed factory constructor, now requiresanalyzerparameter.
New #
- New mini-library
constants. - New extension class on String
EnglishStringExtensionsadded toextensionsmini-library. - New static const
TextTokenizer.englishshortcut factory method.
Bug fixes #
- Fixed handling of accented characters in
English.syllableCounter. - Fixed bugs in
English.syllableCounterto improve accuracy when dealing with hyphenated terms, abbreviations and apostrophes of contraction.
Updated #
- Dependencies.
- Tests.
- Documentation
- Examples.
0.15.1 #
0.15.0 #
0.14.0 #
BREAKING CHANGES
Breaking changes #
- Removed library
package_exports. - The
Porter2Stemmerclass from theporter_2_stemmerpackage is exported by thetext_indexerlibrary. - The
Porter2StemmerExtensionString extension is exported by theextensionslibrary.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.13.0 #
BREAKING CHANGES
Breaking changes #
- Added field
TextAnalyzer.stemmertoTextAnalyzerclass. - Added field
TextAnalyzer.stopWordstoTextAnalyzerclass. - Added field
TextAnalyzer.lemmatizertoTextAnalyzerclass. - Added field
TextAnalyzer.termExceptionstoTextAnalyzerclass. - Removed static field
TextTokenizer.defaultTokenFilter. - Changed
TextTokenizer.tokenizemethod to applyanalyzer.stemmer,analyzer.stopWords,analyzer.lemmatizerananalyzer.termExceptionsto all tokens/terms.
New #
- Implemented field
English.stemmerinEnglishclass. - Implemented field
English.stopWordsinEnglishclass. - Implemented field
English.lemmatizerinEnglishclass. - Implemented field
English.termExceptionsinEnglishclass.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.13.0-1 #
BREAKING CHANGES
Breaking changes #
- Added field
TextAnalyzer.stemmertoTextAnalyzerclass. - Added field
TextAnalyzer.stopWordstoTextAnalyzerclass. - Added field
TextAnalyzer.lemmatizertoTextAnalyzerclass. - Added field
TextAnalyzer.termExceptionstoTextAnalyzerclass. - Removed static field
TextTokenizer.defaultTokenFilter. - Changed
TextTokenizer.tokenizemethod to applyanalyzer.stemmer,analyzer.stopWords,analyzer.lemmatizerananalyzer.termExceptionsto all tokens/terms.
New #
- Implemented field
English.stemmerinEnglishclass. - Implemented field
English.stopWordsinEnglishclass. - Implemented field
English.lemmatizerinEnglishclass. - Implemented field
English.termExceptionsinEnglishclass.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.12.1 #
0.12.0 #
BREAKING CHANGES
Breaking changes #
- String extensions
extension TermSimilarityExtensions on Stringremoved fromtext_analysislibrary. Import theextensionslibrary in stead. - Type definitions removed from
text_analysislibrary. Import thetype_definitionslibrary in stead. - Package export
porter_2_stemmerremoved fromtext_analysislibrary, import thepackage_exportslibrary in stead. - Changed definition/computation of [lengthDistance].
- Changed definition/computation of [lengthSimilarity].
- Changed definition/computation of [termSimilarity].
New #
- Added
int term.editDistance(String other)extension on String. - Added
double term.editDistanceSimilarity(String other)extension on String. - Added class
TermSimilaritythat exposes static methods for comparing terms.
Bug fixes #
- Fixed issue with tokenizer not incrementing term positions
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.12.0-2 #
BREAKING CHANGES
Breaking changes #
- String extensions
extension TermSimilarityExtensions on Stringremoved fromtext_analysislibrary. Import theextensionslibrary in stead. - Type definitions removed from
text_analysislibrary. Import thetype_definitionslibrary in stead. - Package export
porter_2_stemmerremoved fromtext_analysislibrary, import thepackage_exportslibrary in stead. - Changed definition/computation of [lengthDistance].
- Changed definition/computation of [lengthSimilarity].
- Changed definition/computation of [termSimilarity].
New #
- Added
int term.editDistance(String other)extension on String. - Added
double term.editDistanceSimilarity(String other)extension on String. - Added class
TermSimilaritythat exposes static methods for comparing terms.
Bug fixes #
- Fixed issue with tokenizer not incrementing term positions
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.12.0-1 #
BREAKING CHANGES
Breaking changes #
- String extensions
extension TermSimilarityExtensions on Stringremoved fromtext_analysislibrary. Import theextensionslibrary in stead. - Type definitions removed from
text_analysislibrary. Import thetype_definitionslibrary in stead. - Package export
porter_2_stemmerremoved fromtext_analysislibrary, import thepackage_exportslibrary in stead. - Changed definition/computation of [lengthDistance].
- Changed definition/computation of [lengthSimilarity].
- Changed definition/computation of [termSimilarity].
New #
- Added
int term.editDistance(String other)extension on String. - Added
double term.editDistanceSimilarity(String other)extension on String. - Added class
TermSimilaritythat exposes static methods for comparing terms.
Bug fixes #
- Fixed issue with tokenizer not incrementing term positions
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.11.2 #
0.11.1 #
0.11.0 #
BREAKING CHANGES
This version sees numerous breaking changes, including the re-naming of the primary interfaces of the library.
Breaking changes #
- Renamed
TextAnalyzerinterface toTextTokenizer. - Renamed
TextAnalyzerConfigurationinterface toTextAnalyzer. - Added
SentenceSplitter get sentenceSplittertoTextAnalyzerinterface. - Added
ParagraphSplitter get paragraphSplittertoTextAnalyzerinterface. - Added
SyllableCounter get syllableCountertoTextAnalyzerinterface. - Added
List<String> paragraphs(SourceText source)toITextTokenizerinterface. - Moved class
TextTokenizerto a private implementation class_TextTokenizerImpland renamedITextTokenizerinterface toTextTokenizer.
New #
- Added mixin class
TextTokenizerMixin. - Added object model
TextDocument. - Added typedef
SyllableCounter. - Added unnamed factory constructor to
TextTokenizerthat initializes a_TextTokenizerImpl. - Added
SentenceSplitter get sentenceSplittertoEnglishclass. - Added
ParagraphSplitter get paragraphSplittertoEnglishclass. - Added
SyllableCounter get syllableCountertoEnglishclass. - Added
TextDocumentinterface. - Added
TextDocumentMixinmixin class. - Added
TextDocumentunnamed factory with private implementation class. - Added
TextDocument.analyzefactory constructor. - Added
TextDocument.analyzeJsonfactory constructor. - Added extension on String
double lengthDistance(Term other). - Added extension on String
double lengthSimilarity(Term other). - Added extension on String
Map<Term, double> lengthSimilarityMap(Iterable<Term> terms).
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
Re-organized code repository
0.10.0 #
BREAKING CHANGES
This version sees numerous breaking changes, including the re-naming of the primary interfaces of the library.
Breaking changes #
- Renamed
TextAnalyzerinterface toTextTokenizer. - Renamed
TextAnalyzerConfigurationinterface toTextAnalyzer. - Added
SentenceSplitter get sentenceSplittertoTextAnalyzerinterface. - Added
ParagraphSplitter get paragraphSplittertoTextAnalyzerinterface. - Added
SyllableCounter get syllableCountertoTextAnalyzerinterface. - Added
List<String> paragraphs(SourceText source)toITextTokenizerinterface. - Moved class
TextTokenizerto a private implementation class_TextTokenizerImpland renamedITextTokenizerinterface toTextTokenizer.
New #
- Added mixin class
TextTokenizerMixin. - Added object model
TextDocument. - Added typedef
SyllableCounter. - Added unnamed factory constructor to
TextTokenizerthat initializes a_TextTokenizerImpl. - Added
SentenceSplitter get sentenceSplittertoEnglishclass. - Added
ParagraphSplitter get paragraphSplittertoEnglishclass. - Added
SyllableCounter get syllableCountertoEnglishclass. - Added
TextDocumentinterface. - Added
TextDocumentMixinmixin class. - Added
TextDocumentunnamed factory with private implementation class. - Added
TextDocument.analyzefactory constructor. - Added
TextDocument.analyzeJsonfactory constructor. - Added extension on String
double lengthDistance(Term other). - Added extension on String
double lengthSimilarity(Term other). - Added extension on String
Map<Term, double> lengthSimilarityMap(Iterable<Term> terms).
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
- Re-organized code repository.
0.9.1 #
0.9.0 #
BREAKING CHANGES
Breaking changes #
- Removed class
TextSource. - Removed class
Sentence. - Removed class
TermPair. - Removed
TextAnalyzer.sentenceSplitterfromTextAnalyzerinterface. - Changed
TextTokenizer.tokenizereturn value toList<Token>. - Changed
TextTokenizer.tokenizeJsonreturn value toList<Token>.
0.8.1 #
0.8.0 #
0.7.0 #
0.6.5+1 #
PRE-RELEASE
Minor bug fixes, updated dependencies, tests, examples and documentation.
0.6.5 #
0.6.4 #
0.6.3 #
0.6.2 #
0.6.1 #
PRE-RELEASE
- Added type aliases to improve code readability.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.6.0 #
0.5.0 #
0.4.1 #
0.4.0 #
PRE-RELEASE, BREAKING CHANGES
Breaking changes #
- Added
Token.fieldproperty to token, breaks default generative constructor. - Added
FieldName? fieldoptional parameter toTextTokenizer.tokenizemethod. - Removed deprecated property
Token.index, useToken.termPositioninstead. - Removed deprecated property
Token.position, useToken.termPositioninstead. - Removed deprecated extension method
Iterable<Token>.maxIndex, useIterable<Token>.Iterable - Removed extension method
Iterable<Token>.minIndex, useIterable<Token>.Iterable
New #
- Added new method
ITextAnalyser,tokenizeJson. - Added new tests.
- Added new examples.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.3.0 #
PRE-RELEASE, BREAKING CHANGES
Breaking changes #
TextAnalyzer.characterFilterchanged to non-nullable. Use(phrase) => phraseif nocharacterFilteris required.TextAnalyzer.termFilterchanged to non-nullable. Use(phrase) => [phrase]if notermFilteris required.
New #
- Added
porter_2_stemmerpackage export so it does not need to be imported separately.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.2.0 #
0.1.0 #
0.0.12 #
0.0.9-beta.1 #
0.0.8 #
PRE-RELEASE, BREAKING CHANGES
Breaking changes #
- Removed
relevanceextension method fromTokenCollectionExtension.
0.0.3 #
PRE-RELEASE, BREAKING CHANGES
Breaking changes #
- Stemmer removed from English configuration.
- Stemmer incorporated into default tokenFilter for
TextTokenizer.
0.0.1-beta.1 #
PRE-RELEASE
Initial version.