Re: How to run MLlib's word2vec in CBOW mode?

2017-09-28 Thread pun
Thank you so much!Any sense to how long this may take to get released? TIA -- Sent from: http://apache-spark-user-list.1001560.n3.nabble.com/

Re: How to run MLlib's word2vec in CBOW mode?

2017-09-28 Thread Nick Pentreath
MLlib currently doesn't support CBOW - there is an open PR for it (see https://issues.apache.org/jira/browse/SPARK-20372). On Thu, 28 Sep 2017 at 09:56 pun wrote: > Hello, > My understanding is that word2vec can be ran in two modes: > >- continuous bag-of-words (CBOW) (order of words does no

How to run MLlib's word2vec in CBOW mode?

2017-09-28 Thread pun
Hello, My understanding is that word2vec can be ran in two modes: continuous bag-of-words (CBOW) (order of words does not matter) continuous skip-gram (order of words matters) I would like to run the *CBOW* implementation from Spark's MLlib, but it is not clear to me from the documentation and th