I am a student (computer science). This is my first question in stackoverflow. I really would appreciate your help! (The package I am referring to is called 'word2vec', thats why the tags/title are a bit confusing to choose.)
In the description of the doc2vec function (here https://cran.r-project.org/web/packages/word2vec/word2vec.pdf) it says:
Document vectors are the sum of the vectors of the words which are part of the document standardised by the scale of the vector space. This scale is the sqrt of the average inner product of the vector elements.
From what I understood, doc2vec takes one additional vector for every paragraph. Which, in my eyes, seems to be different than the above description.
Is my understanding of doc2vec correct, or close enough? And: Does the cited implementation work like the doc2vec-algorithm?