text_analysis 0.15.1+1 text_analysis: ^0.15.1+1 copied to clipboard
Tokenize text, compute readibility scores for a document and evaluate similarity of terms.
0.15.1 #
0.15.0 #
0.14.0 #
BREAKING CHANGES
Breaking changes #
- Removed library
package_exports
. - The
Porter2Stemmer
class from theporter_2_stemmer
package is exported by thetext_indexer
library. - The
Porter2StemmerExtension
String extension is exported by theextensions
library.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.13.0 #
BREAKING CHANGES
Breaking changes #
- Added field
TextAnalyzer.stemmer
toTextAnalyzer
class. - Added field
TextAnalyzer.stopWords
toTextAnalyzer
class. - Added field
TextAnalyzer.lemmatizer
toTextAnalyzer
class. - Added field
TextAnalyzer.termExceptions
toTextAnalyzer
class. - Removed static field
TextTokenizer.defaultTokenFilter
. - Changed
TextTokenizer.tokenize
method to applyanalyzer.stemmer
,analyzer.stopWords
,analyzer.lemmatizer
ananalyzer.termExceptions
to all tokens/terms.
New #
- Implemented field
English.stemmer
inEnglish
class. - Implemented field
English.stopWords
inEnglish
class. - Implemented field
English.lemmatizer
inEnglish
class. - Implemented field
English.termExceptions
inEnglish
class.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.13.0-1 #
BREAKING CHANGES
Breaking changes #
- Added field
TextAnalyzer.stemmer
toTextAnalyzer
class. - Added field
TextAnalyzer.stopWords
toTextAnalyzer
class. - Added field
TextAnalyzer.lemmatizer
toTextAnalyzer
class. - Added field
TextAnalyzer.termExceptions
toTextAnalyzer
class. - Removed static field
TextTokenizer.defaultTokenFilter
. - Changed
TextTokenizer.tokenize
method to applyanalyzer.stemmer
,analyzer.stopWords
,analyzer.lemmatizer
ananalyzer.termExceptions
to all tokens/terms.
New #
- Implemented field
English.stemmer
inEnglish
class. - Implemented field
English.stopWords
inEnglish
class. - Implemented field
English.lemmatizer
inEnglish
class. - Implemented field
English.termExceptions
inEnglish
class.
Updated #
- Dependencies.
- Tests.
- Examples.
- Documentation.
0.12.1 #
0.12.0 #
BREAKING CHANGES
Breaking changes #
- String extensions
extension TermSimilarityExtensions on String
removed fromtext_analysis
library. Import theextensions
library in stead. - Type definitions removed from
text_analysis
library. Import thetype_definitions
library in stead. - Package export
porter_2_stemmer
removed fromtext_analysis
library, import thepackage_exports
library 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
TermSimilarity
that 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 String
removed fromtext_analysis
library. Import theextensions
library in stead. - Type definitions removed from
text_analysis
library. Import thetype_definitions
library in stead. - Package export
porter_2_stemmer
removed fromtext_analysis
library, import thepackage_exports
library 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
TermSimilarity
that 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 String
removed fromtext_analysis
library. Import theextensions
library in stead. - Type definitions removed from
text_analysis
library. Import thetype_definitions
library in stead. - Package export
porter_2_stemmer
removed fromtext_analysis
library, import thepackage_exports
library 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
TermSimilarity
that 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
TextAnalyzer
interface toTextTokenizer
. - Renamed
TextAnalyzerConfiguration
interface toTextAnalyzer
. - Added
SentenceSplitter get sentenceSplitter
toTextAnalyzer
interface. - Added
ParagraphSplitter get paragraphSplitter
toTextAnalyzer
interface. - Added
SyllableCounter get syllableCounter
toTextAnalyzer
interface. - Added
List<String> paragraphs(SourceText source)
toITextTokenizer
interface. - Moved class
TextTokenizer
to a private implementation class_TextTokenizerImpl
and renamedITextTokenizer
interface toTextTokenizer
.
New #
- Added mixin class
TextTokenizerMixin
. - Added object model
TextDocument
. - Added typedef
SyllableCounter
. - Added unnamed factory constructor to
TextTokenizer
that initializes a_TextTokenizerImpl
. - Added
SentenceSplitter get sentenceSplitter
toEnglish
class. - Added
ParagraphSplitter get paragraphSplitter
toEnglish
class. - Added
SyllableCounter get syllableCounter
toEnglish
class. - Added
TextDocument
interface. - Added
TextDocumentMixin
mixin class. - Added
TextDocument
unnamed factory with private implementation class. - Added
TextDocument.analyze
factory constructor. - Added
TextDocument.analyzeJson
factory 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
TextAnalyzer
interface toTextTokenizer
. - Renamed
TextAnalyzerConfiguration
interface toTextAnalyzer
. - Added
SentenceSplitter get sentenceSplitter
toTextAnalyzer
interface. - Added
ParagraphSplitter get paragraphSplitter
toTextAnalyzer
interface. - Added
SyllableCounter get syllableCounter
toTextAnalyzer
interface. - Added
List<String> paragraphs(SourceText source)
toITextTokenizer
interface. - Moved class
TextTokenizer
to a private implementation class_TextTokenizerImpl
and renamedITextTokenizer
interface toTextTokenizer
.
New #
- Added mixin class
TextTokenizerMixin
. - Added object model
TextDocument
. - Added typedef
SyllableCounter
. - Added unnamed factory constructor to
TextTokenizer
that initializes a_TextTokenizerImpl
. - Added
SentenceSplitter get sentenceSplitter
toEnglish
class. - Added
ParagraphSplitter get paragraphSplitter
toEnglish
class. - Added
SyllableCounter get syllableCounter
toEnglish
class. - Added
TextDocument
interface. - Added
TextDocumentMixin
mixin class. - Added
TextDocument
unnamed factory with private implementation class. - Added
TextDocument.analyze
factory constructor. - Added
TextDocument.analyzeJson
factory 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.sentenceSplitter
fromTextAnalyzer
interface. - Changed
TextTokenizer.tokenize
return value toList<Token>
. - Changed
TextTokenizer.tokenizeJson
return 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.field
property to token, breaks default generative constructor. - Added
FieldName? field
optional parameter toTextTokenizer.tokenize
method. - Removed deprecated property
Token.index
, useToken.termPosition
instead. - Removed deprecated property
Token.position
, useToken.termPosition
instead. - 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.characterFilter
changed to non-nullable. Use(phrase) => phrase
if nocharacterFilter
is required.TextAnalyzer.termFilter
changed to non-nullable. Use(phrase) => [phrase]
if notermFilter
is required.
New #
- Added
porter_2_stemmer
package 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
relevance
extension 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.