'word2vec' not found
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Salad Box
el 12 de Oct. de 2020
Respondida: Sohini Sarkar
el 14 de Oct. de 2020
Hi
I'm using 2018b and 'text analytics toolbox' appears in my toolbox list.
However, when I type
>> which word2vec
'word2vec' not found.
Why is that?
Can I or can I not use 'word2vec' function?
If yes, how to use it in this case?
Please advise.
Many thanks.
1 comentario
Ameer Hamza
el 12 de Oct. de 2020
word2vec was introduced in R2017b, so it should be available in your MATLAB. Does the text analytics toolbox appears in the list when you run
ver
Respuesta aceptada
Sohini Sarkar
el 14 de Oct. de 2020
word2vec is a method of wordEmbedding. It appears once you construct a wordEmbedding in the current matlab session, e.g.
>> which word2vec
% nothing
>> emb = wordEmbedding("foo",1);
>> which word2vec
% returns path to wordEmbedding, says word2vec is a method
Check out this page: https://www.mathworks.com/discovery/word2vec.html?s_tid=srchtitle
The page has some links to examples that you can try out.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Modeling and Prediction en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!