How to use word2vec with the documents

4 visualizaciones (últimos 30 días)
Saugata Bose
Saugata Bose el 18 de Sept. de 2019
Respondida: Christopher Creutzig el 9 de Mzo. de 2020
Hi
I would like to use word2vec embedding with the documents. The examples I have seen so far have shown how to use word2vec embeddings with the words like this following:
A = word2vec(emb,Vocabulary)
But if I would like to use the word2vec embedding with the documents, is there any possible way to do this? And is it possible to use the output of the word2vec with the doc2sequence?
Because my ultimate goal is to converting a document to a format like this:
embeddingDimension-by-sequenceLength-by-1
Would you please enlighten me in this regard?

Respuestas (1)

Christopher Creutzig
Christopher Creutzig el 9 de Mzo. de 2020
doc2sequence is actually the tool to use to run word2vec on a document, plus padding the output to a common length if desired – the latter is important for some deep learning applications. Check the second example in the doc2sequence documentation.
To get a single dim-by-length array, you will need to take the result and get the first (and only, for a single document input) cell:
c = doc2sequence(emb, document);
c{1}

Categorías

Más información sobre Modeling and Prediction en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by