Skip to content

Releases: TimSchopf/KeyphraseVectorizers

v0.0.13

Choose a tag to compare

@TimSchopf TimSchopf released this 02 May 15:58

Fix small document split and stop words bugs

v0.0.12

Choose a tag to compare

@TimSchopf TimSchopf released this 29 Apr 13:00

This release fixes stop word removal bugs, fixes memory issues for long documents, adds a build_tokenizer attribute, and online update functions.

Solves issues #34, #31, #29, #28, #26, and #6.

Add spacy.Language as valid argument for 'spacy_pipeline'

Choose a tag to compare

@TimSchopf TimSchopf released this 23 Dec 10:53
a20de03

This release allows to reuse an object from spacy.load for many different KeyphraseVectorizer objects. This release includes PR #19

Custom POS-tagger feature added

Choose a tag to compare

@TimSchopf TimSchopf released this 19 Jun 14:01

Added the options to use a custom POS-tagger, define custom stop words, and exclude certain spaCy pipeline components. This release solves issues #2 and #7.

Higher compatibility with available SpaCy pipelines

Choose a tag to compare

@TimSchopf TimSchopf released this 18 Jun 19:23

Fixed issue #11 and #10 by removing the default exclusion of certain spaCy pipeline components. This slightly slows down the keyphrase extraction process. However it grants higher compatibility to all available spaCy pipelines, including the ones that use transformers.

Added 'stop_words'=None option

Choose a tag to compare

@TimSchopf TimSchopf released this 16 May 15:14

Fixed #8

Add stopwords download automation

Choose a tag to compare

@TimSchopf TimSchopf released this 14 Feb 16:11
v0.0.7

Signed-off-by: Tim Schopf <tim.schopf@t-online.de>

Change "multiprocessing" parameter to "workers" parameter

Choose a tag to compare

@TimSchopf TimSchopf released this 12 Feb 14:47
change "multiprocessing" parameter to "workers" parameter

Signed-off-by: Tim Schopf <tim.schopf@t-online.de>

Added min_df and max_df parameters, added support for documents that have more than 1000000 characters, and limit max keyphrase length to 8 words to prevent memory issues

Choose a tag to compare

@TimSchopf TimSchopf released this 06 Feb 10:03
update scipy requirements

Signed-off-by: Tim Schopf <tim.schopf@t-online.de>

Increased efficiency of spaCy pipeline for POS tagging

Choose a tag to compare

@TimSchopf TimSchopf released this 03 Feb 16:25
v0.0.4

v0.0.4, increased efficiency of spaCy pipeline for POS tagging + adde…