- 2017-10-18
- Now tokenization is based on tokenizers and THE stringi packages.
- models API follow mlapi package. No API changes on
text2vec
side - we just put abstractscikit-learn
-like classes to a separate package in order to make them more reusable.
- 2017-06-12
- Add additional filters to
prune_vocabulary
- filter by document counts - Clean up LSA, fixed transform method. Added option to use randomized SVD algorithm from
irlba
.
- Add additional filters to
- 2017-05-17
- Imrove
dist2
performamce for RWMD - incorporate ideas from gensim PR discussion.
- Imrove
- 2017-05-17
- API breaking change - vocabulary format change - now plain
data.frame
with meta-information in attributes (stopwords, ngram, number of docs, etc).
- API breaking change - vocabulary format change - now plain
- 2017-03-25
- No more rely on RcppModules
- API breaking change - removed
lda_c
from formats in DTM construction - added
ifiles_parallel
,itoken_parallel
high-level functions for parallel computing - API breaking change
chunks_numer
parameter renamed ton_chunks
- 2017-01-02
- API breaking change - removed
create_corpus
from public API, moved co-occurence related optons tocreate_tcm
from vecorizers - add ability to add custom weights for co-occurence statistics calculations
- API breaking change - removed
- 2016-12-30
- Noticeable speedup (1.5x) and even more noticeable improvement on memory usage (2x less!) for
create_dtm
,create_tcm
. Now package relies on sparsepp library for underlying hash maps.
- Noticeable speedup (1.5x) and even more noticeable improvement on memory usage (2x less!) for
- 2016-10-30
- Collocations - detection of multi-word phrases using differend heuristics - PMI, gensim, LFMD.
- 2016-10-20
- Fixed bug in
as.lda_c()
function
- Fixed bug in
2016-10-03. See 0.4 milestone tags.
- Now under GPL (>= 2) Licence
- "immutable" iterators - no need to reinitialize them
- unified models interface
- New models: LSA, LDA, GloVe with L1 regularization
- Fast similarity and distances calculation: Cosine, Jaccard, Relaxed Word Mover's Distance, Euclidean
- Better hadnling UTF-8 strings, thanks to @qinwf
- iterators and models rely on
R6
package
- 2016-01-13 fix for #46, thanks to @buhrmann for reporting
- 2016-01-16 format of vocabulary changed.
- do not keep
doc_proportions
. see #52. - add
stop_words
argument toprune_vocabulary
. signature also was changed.
- do not keep
- 2016-01-17 fix for #51. if iterator over tokens returns list with names, these names will be:
- stored as
attr(corpus, 'ids')
- rownames in dtm
- names for dtm list in
lda_c
format
- stored as
- 2016-02-02 high level function for corpus and vocabulary construction.
- construction of vocabulary from list of
itoken
. - construction of dtm from list of
itoken
.
- construction of vocabulary from list of
- 2016-02-10 rename transformers
- now all transformers starts with
transform_*
- more intuitive + simpler usage with autocompletion
- now all transformers starts with
- 2016-03-29 (accumulated since 2016-02-10)
- rename
vocabulary
tocreate_vocabulary
. - new functions
create_dtm
,create_tcm
. - All core functions are able to benefit from multicore machines (user have to register parallel backend themselves)
- Fix for progress bars. Now they are able to reach 100% and ticks increased after computation.
ids
argument toitoken
. Simplifies assignement of ids to rows of DTMcreate_vocabulary
now can handlestopwords
- see all updates here
- rename
- 2016-03-30 more robust
split_into()
util.
First CRAN release of text2vec.
- Fast text vectorization with stable streaming API on arbitrary n-grams.
- Functions for vocabulary extraction and management
- Hash vectorizer (based on digest murmurhash3)
- Vocabulary vectorizer
- GloVe algorithm word embeddings.
- Fast term-co-occurence matrix factorization via parallel async AdaGrad.
- All core functions written in C++.