I'm working with word embeddings using PySpark, in particular I'm working with Word2Vec. Now, I'd like to try Glove instead of Word2Vec but, apparently, it doesn't exist an implementation of Glove with PySpark, but only with Scala language.
Is there any way to use Glove with PySpark? Can I use the Scala implementation into PySpark, or am I obliged to implement from scratch the algorithm?
Thanks