Trait

org.clustering4ever.clustering.epsilonproximity.scala

EpsilonProximityModelAncestor

Related Doc: package scala

Permalink

trait EpsilonProximityModelAncestor[V <: GVector[V], D <: Distance[V]] extends ClusteringModelLocal[V] with DataBasedModel[V, D]

Linear Supertypes
DataBasedModel[V, D], KnnModelModelCz[V, D], KnnModelModel[V, D], MetricModel[V, D], ClusteringModelLocal[V], ClusteringModel, ClusteringSharedTypes, Serializable, Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EpsilonProximityModelAncestor
  2. DataBasedModel
  3. KnnModelModelCz
  4. KnnModelModel
  5. MetricModel
  6. ClusteringModelLocal
  7. ClusteringModel
  8. ClusteringSharedTypes
  9. Serializable
  10. Serializable
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final type ClusterID = Int

    Permalink
    Definition Classes
    ClusteringSharedTypes

Abstract Value Members

  1. abstract val algorithmID: ClusteringAlgorithmNature

    Permalink
    Definition Classes
    ClusteringModel
  2. abstract val clusterNumber: Int

    Permalink

    The number of cluster found

  3. abstract val datapointWithClusterIDSortedByPointID: ArrayBuffer[(Long, (V, ClusterID))]

    Permalink
    Definition Classes
    DataBasedModel
  4. abstract val epsilon: Double

    Permalink

    The value epsilon given/determined by the epsilon proximity algorithm

  5. abstract val inputDataHashCode: Int

    Permalink

    Attributes
    protected
  6. abstract val metric: D

    Permalink
    Definition Classes
    MetricModel

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. final def knnPredict[GS[X] <: GenSeq[X]](gs: GS[V], k: Int): GS[(ClusterID, V)]

    Permalink
    Definition Classes
    DataBasedModel
  12. final def knnPredict[O, Cz[Y, Z <: GVector[Z]] <: Clusterizable[Y, Z, Cz], GS[X] <: GenSeq[X]](gs: GS[Cz[O, V]], k: Int)(implicit d: DummyImplicit): GS[Cz[O, V]]

    Permalink
    Definition Classes
    DataBasedModel
  13. final def knnPredict(v: V, k: Int): ClusterID

    Permalink
    Definition Classes
    DataBasedModel
  14. final def knnPredict[O, Cz[B, C <: GVector[C]] <: Clusterizable[B, C, Cz]](cz: Cz[O, V], k: Int, trainDS: Seq[Cz[O, V]], clusteringNumber: Int): ClusterID

    Permalink
    Definition Classes
    KnnModelModelCz
  15. final def knnPredict(v: V, k: Int, trainDS: Seq[(ClusterID, V)]): ClusterID

    Permalink
    Definition Classes
    KnnModelModel
  16. final def knnPredictWithNN(v: V, k: Int): (ClusterID, Seq[(Long, V)])

    Permalink
    Definition Classes
    DataBasedModel
  17. final def knnPredictWithNN[O, Cz[B, C <: GVector[C]] <: Clusterizable[B, C, Cz]](cz: Cz[O, V], k: Int, trainDS: Seq[Cz[O, V]], clusteringNumber: Int): (ClusterID, Seq[Cz[O, V]])

    Permalink
    Definition Classes
    KnnModelModelCz
  18. final def knnPredictWithNN(v: V, k: Int, trainDS: Seq[(ClusterID, V)]): (ClusterID, Seq[(ClusterID, V)])

    Permalink
    Definition Classes
    KnnModelModel
  19. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. final def obtainClustering[O, Cz[Y, Z <: GVector[Z]] <: Clusterizable[Y, Z, Cz], GS[X] <: GenSeq[X]](data: GS[Cz[O, V]]): GS[Cz[O, V]]

    Permalink
    Attributes
    protected[org.clustering4ever.clustering]
    Definition Classes
    EpsilonProximityModelAncestor → ClusteringModelLocal
  23. final def obtainClusteringIDs[O, Cz[Y, Z <: GVector[Z]] <: Clusterizable[Y, Z, Cz], GS[X] <: GenSeq[X]](data: GS[Cz[O, V]]): GS[ClusterID]

    Permalink
    Attributes
    protected[org.clustering4ever.clustering]
    Definition Classes
    ClusteringModelLocal
  24. final def obtainInputDataClustering[O, Cz[Y, Z <: GVector[Z]] <: Clusterizable[Y, Z, Cz], GS[X] <: GenSeq[X]](data: GS[Cz[O, V]], isDatasetSortedByID: Boolean = false): GS[Cz[O, V]]

    Permalink

    This method work only with input dataset which generate this model, please use others method for new set of points

    This method work only with input dataset which generate this model, please use others method for new set of points

    returns

    the clusterized dataset

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(): Unit

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

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from DataBasedModel[V, D]

Inherited from KnnModelModelCz[V, D]

Inherited from KnnModelModel[V, D]

Inherited from MetricModel[V, D]

Inherited from ClusteringModelLocal[V]

Inherited from ClusteringModel

Inherited from ClusteringSharedTypes

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped