class SVDPlusPlus extends Arguments

Implement SVD++ based on "Factorization Meets the Neighborhood: a Multifaceted Collaborative Filtering Model", available at https://dl.acm.org/citation.cfm?id=1401944.

Note: The status of this algorithm is EXPERIMENTAL. Its API and implementation may be changed in the future.

The prediction rule is rui = u + bu + bi + qi*(pu + |N(u)|-0.5*sum(y)). See the details on page 6 of the article.

Configuration parameters: see the description of each parameter in the article.

Returns a DataFrame with vertex attributes containing the trained model. See the object (static) members for the names of the output columns.

Linear Supertypes
Arguments, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SVDPlusPlus
  2. Arguments
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to any2stringadd[SVDPlusPlus] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SVDPlusPlus, B)
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to ArrowAssoc[SVDPlusPlus] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def ensuring(cond: (SVDPlusPlus) ⇒ Boolean, msg: ⇒ Any): SVDPlusPlus
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to Ensuring[SVDPlusPlus] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (SVDPlusPlus) ⇒ Boolean): SVDPlusPlus
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to Ensuring[SVDPlusPlus] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): SVDPlusPlus
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to Ensuring[SVDPlusPlus] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): SVDPlusPlus
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to Ensuring[SVDPlusPlus] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def gamma1(value: Double): SVDPlusPlus.this.type
  16. def gamma2(value: Double): SVDPlusPlus.this.type
  17. def gamma6(value: Double): SVDPlusPlus.this.type
  18. def gamma7(value: Double): SVDPlusPlus.this.type
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def loss: Double
  23. def maxIter(value: Int): SVDPlusPlus.this.type
  24. def maxValue(value: Double): SVDPlusPlus.this.type
  25. def minValue(value: Double): SVDPlusPlus.this.type
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. def rank(value: Int): SVDPlusPlus.this.type
  30. def run(): DataFrame
  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. def [B](y: B): (SVDPlusPlus, B)
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to ArrowAssoc[SVDPlusPlus] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SVDPlusPlus to StringFormat[SVDPlusPlus] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

Inherited from Arguments

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SVDPlusPlus to any2stringadd[SVDPlusPlus]

Inherited by implicit conversion StringFormat from SVDPlusPlus to StringFormat[SVDPlusPlus]

Inherited by implicit conversion Ensuring from SVDPlusPlus to Ensuring[SVDPlusPlus]

Inherited by implicit conversion ArrowAssoc from SVDPlusPlus to ArrowAssoc[SVDPlusPlus]

Ungrouped