|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Objectorg.apache.spark.graphx.lib.SVDPlusPlus
public class SVDPlusPlus
Implementation of SVD++ algorithm.
Nested Class Summary | |
---|---|
static class |
SVDPlusPlus.Conf
Configuration parameters for SVDPlusPlus. |
Constructor Summary | |
---|---|
SVDPlusPlus()
|
Method Summary | |
---|---|
static scala.Tuple2<Graph<scala.Tuple4<double[],double[],Object,Object>,Object>,Object> |
run(RDD<Edge<Object>> edges,
SVDPlusPlus.Conf conf)
Implement SVD++ based on "Factorization Meets the Neighborhood: a Multifaceted Collaborative Filtering Model", available at http://public.research.att.com/~volinsky/netflix/kdd08koren.pdf . |
static scala.Tuple2<Graph<scala.Tuple4<double[],double[],Object,Object>,Object>,Object> |
runSVDPlusPlus(RDD<Edge<Object>> edges,
SVDPlusPlus.Conf conf)
This method is now replaced by the updated version of run() and returns exactly
the same result. |
Methods inherited from class Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SVDPlusPlus()
Method Detail |
---|
public static scala.Tuple2<Graph<scala.Tuple4<double[],double[],Object,Object>,Object>,Object> runSVDPlusPlus(RDD<Edge<Object>> edges, SVDPlusPlus.Conf conf)
run()
and returns exactly
the same result.
edges
- (undocumented)conf
- (undocumented)
public static scala.Tuple2<Graph<scala.Tuple4<double[],double[],Object,Object>,Object>,Object> run(RDD<Edge<Object>> edges, SVDPlusPlus.Conf conf)
http://public.research.att.com/~volinsky/netflix/kdd08koren.pdf
.
The prediction rule is rui = u + bu + bi + qi*(pu + |N(u)|^^-0.5^^*sum(y)), see the details on page 6.
edges
- edges for constructing the graph
conf
- SVDPlusPlus parameters
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |