You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@spark.apache.org by 김태준 <ki...@gmail.com> on 2016/09/02 03:44:25 UTC

Is Spark ML model possible continues learning

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