I need to vectorize text for multi-label classification and for this I thought about using Mulan (from what I read DL4J does not do multi-label classification). Is it possible to do vectorization using word2vec or paragraphvectors? The necessary format would be something like: doc_1, 0.01, 0.02, -0.12 …, x,y,z
doc_2, 0.03, -0.05, 0.14, x,y,z
doc_n …
where x,y,z are the labels.