hi all i have been studying and working using by spark ml 2.0 on few days anyway, i have a few question about spark ml model process
Q1. Is model possible continues learning ?? below code is example scenario to this question =================================== // training model var word2vecModel = word2vec.fit(dataset) // save model word2vecModel.save(path); // reload model word2vecModel = Word2VecModel.load(path) *// Q1.if will come new data and i want to continues learning into already exist model * // save model word2vecModel.save(path); =================================== as you konw that i didn't found these a function(AP) Thanks