Skip to content

Commit ddbe171

Browse files
committed
fix DOI in DESCRIPTION with new format
1 parent 364dfea commit ddbe171

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

DESCRIPTION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
Package: doc2vec
22
Type: Package
33
Title: Distributed Representations of Sentences, Documents and Topics
4-
Version: 0.2.1
4+
Version: 0.2.2
55
Authors@R: c(
66
person('Jan', 'Wijffels', role = c('aut', 'cre', 'cph'), email = '[email protected]', comment = "R wrapper"),
77
person('BNOSAC', role = 'cph', comment = "R wrapper"),
88
person('hiyijian', role = c('ctb', 'cph'), comment = "Code in src/doc2vec"))
99
Maintainer: Jan Wijffels <[email protected]>
1010
Description: Learn vector representations of sentences, paragraphs or documents by using the 'Paragraph Vector' algorithms,
1111
namely the distributed bag of words ('PV-DBOW') and the distributed memory ('PV-DM') model.
12-
The techniques in the package are detailed in the paper "Distributed Representations of Sentences and Documents" by Mikolov et al. (2014), available at <arXiv:1405.4053>.
12+
The techniques in the package are detailed in the paper "Distributed Representations of Sentences and Documents" by Mikolov et al. (2014), available at <doi:10.48550/arXiv.1405.4053>.
1313
The package also provides an implementation to cluster documents based on these embedding using a technique called top2vec.
1414
Top2vec finds clusters in text documents by combining techniques to embed documents and words and density-based clustering.
1515
It does this by embedding documents in the semantic space as defined by the 'doc2vec' algorithm. Next it maps
@@ -18,12 +18,12 @@ Description: Learn vector representations of sentences, paragraphs or documents
1818
areas are the topic clusters which can be represented by the corresponding topic vector which is an aggregate of the
1919
document embeddings of the documents which are part of that topic cluster. In the same semantic space similar words can
2020
be found which are representative of the topic.
21-
More details can be found in the paper 'Top2Vec: Distributed Representations of Topics' by D. Angelov available at <arXiv:2008.09470>.
21+
More details can be found in the paper 'Top2Vec: Distributed Representations of Topics' by D. Angelov available at <doi:10.48550/arXiv.2008.09470>.
2222
URL: https://github.com/bnosac/doc2vec
2323
License: MIT + file LICENSE
2424
Encoding: UTF-8
2525
LazyData: true
26-
RoxygenNote: 7.1.1
26+
RoxygenNote: 7.1.2
2727
Depends: R (>= 2.10)
2828
Imports: Rcpp (>= 0.11.5), stats, utils
2929
LinkingTo: Rcpp

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## CHANGES IN doc2vec VERSION 0.2.2
2+
3+
- Fix DOI in DESCRIPTION
4+
15
## CHANGES IN doc2vec VERSION 0.2.1
26

37
- Make sure words are only 100 characters when getting embeddings of documents (issue #20)

0 commit comments

Comments
 (0)