Re: Serializing MLlib MatrixFactorizationModel

2015-08-21 Thread Madawa Soysa
Hi Joseph, I have used the built in save as you suggested. The directory gets created but the complete model doesn't gets written to the file. Only a part of the model gets written to the file. Please find the attached part that was written when tested with the above method. On 18 August 2015 at

Re: Serializing MLlib MatrixFactorizationModel

2015-08-17 Thread Joseph Bradley
I'd recommend using the built-in save and load, which will be better for cross-version compatibility. You should be able to call myModel.save(path), and load it back with MatrixFactorizationModel.load(path). On Mon, Aug 17, 2015 at 6:31 AM, Madawa Soysa wrote: > Hi All, > > I have an issue when