Class/Object

com.github.cloudml.zen.ml.regression

LogisticRegression

Related Docs: object LogisticRegression | package regression

Permalink

abstract class LogisticRegression extends Serializable with Logging

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

Instance Constructors

  1. new LogisticRegression(input: RDD[(VertexId, LabeledPoint)], stepSize: Double = 1e-4, regParam: Double = 0.0, useAdaGrad: Boolean = false, storageLevel: StorageLevel = StorageLevel.MEMORY_AND_DISK)

    Permalink
  2. new LogisticRegression(dataSet: Graph[VD, ED], stepSize: Double, regParam: Double, useAdaGrad: Boolean, storageLevel: StorageLevel)

    Permalink

Abstract Value Members

  1. abstract def backward(q: VertexRDD[VD], iter: Int): VertexRDD[Double]

    Permalink
    Attributes
    protected
  2. abstract def forward(iter: Int): VertexRDD[VD]

    Permalink
    Attributes
    protected
  3. abstract def loss(q: VertexRDD[VD]): Double

    Permalink
    Attributes
    protected

Concrete 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 adaDelta(deltaSum: VertexRDD[Array[Double]], gradient: VertexRDD[Double], epsilon: Double, rho: Double): VertexRDD[Array[Double]]

    Permalink
    Attributes
    protected
  5. def adaGrad(gradientSum: VertexRDD[Double], gradient: VertexRDD[Double], epsilon: Double, rho: Double): VertexRDD[Array[Double]]

    Permalink
    Attributes
    protected
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def checkpointGradientSum(): Unit

    Permalink
    Attributes
    protected
  8. var checkpointInterval: Int

    Permalink
    Attributes
    protected
  9. def checkpointVertices(): Unit

    Permalink
    Attributes
    protected
  10. def clone(): AnyRef

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

    Permalink
  12. var deltaSum: VertexRDD[Array[Double]]

    Permalink
    Attributes
    protected
  13. var edges: EdgeRDDImpl[ED, VD]

    Permalink
    Attributes
    protected
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def features: VertexRDD[VD]

    Permalink
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  19. var gradient: VertexRDD[Double]

    Permalink
    Attributes
    protected
  20. var gradientSum: VertexRDD[Double]

    Permalink
    Attributes
    protected
  21. def hashCode(): Int

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

    Permalink
    Attributes
    protected
  23. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  25. def log: Logger

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Attributes
    protected
    Definition Classes
    Logging
  37. var margin: VertexRDD[Double]

    Permalink
    Attributes
    protected
  38. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  41. val numFeatures: Long

    Permalink
  42. val numSamples: Long

    Permalink
  43. var previousVertices: VertexRDD[VD]

    Permalink
    Attributes
    protected
  44. var regParam: Double

    Permalink
  45. def run(iterations: Int): Unit

    Permalink
  46. def samples: VertexRDD[VD]

    Permalink
  47. def saveModel(): LogisticRegressionModel

    Permalink
  48. def setAdaGrad(useAdaGrad: Boolean): LogisticRegression.this.type

    Permalink
  49. def setCheckpointInterval(interval: Int): LogisticRegression.this.type

    Permalink
  50. def setRegParam(regParam: Double): LogisticRegression.this.type

    Permalink
  51. def setStepSize(stepSize: Double): LogisticRegression.this.type

    Permalink
  52. var stepSize: Double

    Permalink
  53. var storageLevel: StorageLevel

    Permalink
  54. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  55. def thisIterStepSize(iter: Int): Double

    Permalink
    Attributes
    protected
  56. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  57. def unpersistVertices(): Unit

    Permalink
    Attributes
    protected
  58. def updateDeltaSum(gradient: VertexRDD[Double], iter: Int): VertexRDD[Double]

    Permalink
    Attributes
    protected
  59. def updateGradientSum(gradient: VertexRDD[Double], iter: Int): VertexRDD[Double]

    Permalink
    Attributes
    protected
  60. def updateWeight(delta: VertexRDD[Double], iter: Int, thisIterStepSize: Double, thisIterL1StepSize: Double): VertexRDD[Double]

    Permalink
    Attributes
    protected
  61. var useAdaGrad: Boolean

    Permalink
  62. var vertices: VertexRDD[VD]

    Permalink
    Attributes
    protected
  63. final def wait(): Unit

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

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

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

Inherited from Logging

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped