Re: modifications to ALS.scala

2016-12-08 Thread Georg Heiler
You can write some code e.g. A custom estimator transformer in sparks namespace. http://stackoverflow.com/a/40785438/2587904 might help you get started. Be aware that using private e.g. Spark internal api might be subjected to change from release to release. You definitely will require spark -mlli

Re: modifications to ALS.scala

2016-12-07 Thread harini
I am new to development with spark, how do I do that? Can I write up a custom implementation under package org.apache.spark.ml.recommendation, and specify "spark-mllib" along with others as a library dependency? -- View this message in context: http://apache-spark-developers-list.1001551.n3.nab

Re: modifications to ALS.scala

2016-12-07 Thread Georg Heiler
.scala > <https://github.com/apache/spark/blob/v1.6.2/mllib/src/main/scala/org/apache/spark/ml/recommendation/ALS.scala> > - Is there a way to do this without having to build spark in its entirety? > -- > View this message in context: modifications to

modifications to ALS.scala

2016-12-07 Thread harini
Hi all,I am trying to implement ALS with a slightly modified objective function, which will require minor changes to fit -> train -> computeFactors within ALS.scala - Is there a way t