Class

com.github.cloudml.zen.ml.recommendation

FMRegression

Related Doc: package recommendation

Permalink

class FMRegression extends FM

Linear Supertypes
FM, Logging, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FMRegression
  2. FM
  3. Logging
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FMRegression(input: RDD[(VertexId, LabeledPoint)], stepSize: Double = 1e-2, l2Reg: (Double, Double, Double) = (1e-3, 1e-3, 1e-3), rank: Int = 20, useAdaGrad: Boolean = true, miniBatchFraction: Double = 1.0, storageLevel: StorageLevel = StorageLevel.MEMORY_AND_DISK)

    Permalink
  2. new FMRegression(_dataSet: Graph[VD, ED], stepSize: Double, l2: (Double, Double, Double), rank: Int, useAdaGrad: Boolean, miniBatchFraction: Double, storageLevel: StorageLevel)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def adaGrad(gradientSum: (Double, VertexRDD[Array[Double]]), gradient: (Double, VertexRDD[Array[Double]]), epsilon: Double, rho: Double): (Double, Double, VertexRDD[(Array[Double], Array[Double])])

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def backward(q: VertexRDD[VD], iter: Int): (Long, Double, (Double, VertexRDD[Array[Double]]))

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  7. var bias: Double

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  8. def checkpointGradientSum(delta: VertexRDD[(Array[Double], Array[Double])]): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  9. val checkpointInterval: Int

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  10. def checkpointVertices(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. var dataSet: Graph[VD, ED]

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  13. var edges: EdgeRDD[ED]

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  14. def epsilon: Double

    Permalink
    Definition Classes
    FM
  15. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  17. def esgd(gradientSum: (Double, VertexRDD[Array[Double]]), gradient: (Double, VertexRDD[Array[Double]]), epsilon: Double, iter: Int): (Double, Double, VertexRDD[(Array[Double], Array[Double])])

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  18. def features: VertexRDD[VD]

    Permalink
    Definition Classes
    FM
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def forward(iter: Int): VertexRDD[Array[Double]]

    Permalink
    Attributes
    protected[com.github.cloudml.zen.ml]
    Definition Classes
    FM
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. var gradientSum: (Double, VertexRDD[Array[Double]])

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  23. def halfLife: Int

    Permalink
    Definition Classes
    FM
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. var innerIter: Int

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  26. def intercept: Double

    Permalink
    Definition Classes
    FM
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def isTraceEnabled(): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  29. val l2: (Double, Double, Double)

    Permalink
    Definition Classes
    FMRegression → FM
  30. def log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  31. def logDebug(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  32. def logDebug(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  33. def logError(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  34. def logError(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  35. def logInfo(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  36. def logInfo(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  37. def logName: String

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  38. def logTrace(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  39. def logTrace(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  40. def logWarning(msg: ⇒ String, throwable: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  41. def logWarning(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  42. def mask: Int

    Permalink
    Attributes
    protected[com.github.cloudml.zen.ml]
    Definition Classes
    FM
  43. val miniBatchFraction: Double

    Permalink
    Definition Classes
    FMRegression → FM
  44. var multi: VertexRDD[Array[Double]]

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  45. def multiplier(q: VertexRDD[VD], iter: Int): (Long, Double, VertexRDD[VD])

    Permalink
    Attributes
    protected
    Definition Classes
    FMRegression → FM
  46. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  47. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  48. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  49. var numFeatures: Long

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  50. var numSamples: Long

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  51. def predict(arr: Array[Double]): Double

    Permalink
    Attributes
    protected
    Definition Classes
    FMRegression → FM
  52. val rank: Int

    Permalink
    Definition Classes
    FMRegression → FM
  53. def run(iterations: Int): Unit

    Permalink
    Definition Classes
    FM
  54. def samples: VertexRDD[VD]

    Permalink
    Definition Classes
    FM
  55. def saveModel(): FMModel

    Permalink
    Definition Classes
    FM
  56. def setDataSet(data: Graph[VD, ED]): FMRegression.this.type

    Permalink
    Definition Classes
    FM
  57. val stepSize: Double

    Permalink
    Definition Classes
    FMRegression → FM
  58. val storageLevel: StorageLevel

    Permalink
    Definition Classes
    FMRegression → FM
  59. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  60. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  61. def updateGradientSum(gradient: (Double, VertexRDD[Array[Double]]), iter: Int): (Double, VertexRDD[Array[Double]])

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  62. def updateWeight(delta: (Double, VertexRDD[Array[Double]]), iter: Int): VertexRDD[VD]

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  63. val useAdaGrad: Boolean

    Permalink
    Definition Classes
    FMRegression → FM
  64. var vertices: VertexRDD[VD]

    Permalink
    Attributes
    protected
    Definition Classes
    FM
  65. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from FM

Inherited from Logging

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped