1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-21 08:35:58 +02:00

gnu: Add r-text2vec.

* gnu/packages/cran.scm (r-text2vec): New variable.
This commit is contained in:
Ricardo Wurmus
2021-06-29 12:27:54 +02:00
parent 1e9f4a86a7
commit 05238ae30e
+36
View File
@@ -17896,6 +17896,42 @@ products and native slicing of the sparse matrices in @dfn{Compressed Sparse
Row} (CSR) format.")
(license license:gpl2+)))
(define-public r-text2vec
(package
(name "r-text2vec")
(version "0.6")
(source
(origin
(method url-fetch)
(uri (cran-uri "text2vec" version))
(sha256
(base32
"0r75cv77x2zm1z66s95hic71dpbqmybz39n48q6mz7gfd3m7312y"))))
(properties `((upstream-name . "text2vec")))
(build-system r-build-system)
(propagated-inputs
`(("r-data-table" ,r-data-table)
("r-digest" ,r-digest)
("r-lgr" ,r-lgr)
("r-matrix" ,r-matrix)
("r-mlapi" ,r-mlapi)
("r-r6" ,r-r6)
("r-rcpp" ,r-rcpp)
("r-rsparse" ,r-rsparse)
("r-stringi" ,r-stringi)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "http://text2vec.org")
(synopsis "Text mining framework for R")
(description
"This package provides fast and memory-friendly tools for text
vectorization, topic modeling (LDA, LSA), word embeddings (GloVe),
similarities. It provides a source-agnostic streaming API, which allows
researchers to perform analysis of collections of documents which are larger
than available RAM. All core functions are parallelized to benefit from
multicore machines.")
(license license:gpl2+)))
(define-public r-xmlparsedata
(package
(name "r-xmlparsedata")