Uses of Class
moa.clusterers.clustree.ClusKernel
-
Packages that use ClusKernel Package Description moa.clusterers.clustree -
-
Uses of ClusKernel in moa.clusterers.clustree
Fields in moa.clusterers.clustree declared as ClusKernel Modifier and Type Field Description ClusKernel
Entry. data
The actual entry data.Methods in moa.clusterers.clustree that return ClusKernel Modifier and Type Method Description protected ClusKernel
Entry. emptyBuffer(long currentTime, double negLambda)
Clear the buffer in this entry and return a copy.protected ClusKernel
Entry. getBuffer()
Getter for the buffer.protected ClusKernel
Entry. getData()
Getter for the data.Methods in moa.clusterers.clustree with parameters of type ClusKernel Modifier and Type Method Description void
ClusKernel. add(ClusKernel other)
Adds the given cluster to this cluster, without making this cluster older.protected void
ClusKernel. aggregate(ClusKernel other, long timeDifference, double negLambda)
Make this cluster older bei weighting it and add to this cluster the given cluster.protected void
Entry. aggregateCluster(ClusKernel otherData, long currentTime, double negLambda)
Aggregate the givenKernel
to thedata
cluster of this entry.protected void
Entry. aggregateToBuffer(ClusKernel pointToInsert, long currentTime, double negLambda)
Aggregate the givenKernel
to thebuffer
cluster of this entry.double
ClusKernel. calcDistance(ClusKernel other)
Calculate the distance to this other cluster.protected double
Entry. calcDistance(ClusKernel cluster)
Calculates the distance to the data in this entry.void
ClusTree. insert(ClusKernel newPoint, Budget budget, long timestamp)
Insert a new point in theTree
.Entry
Node. nearestEntry(ClusKernel buffer)
Returns the neareastEntry
to the givenCluster
.protected void
ClusKernel. overwriteOldCluster(ClusKernel other)
Overwrites the LS, SS and weightedN in this cluster to the values of the given cluster but adds N and classCount of the given cluster to this one.Constructors in moa.clusterers.clustree with parameters of type ClusKernel Constructor Description ClusKernel(ClusKernel other)
Instantiates a copy of the given cluster.Entry(int numberDimensions, ClusKernel cluster, long currentTime)
Constructuctor that creates anEntry
with an empty buffer and thedata
given by theKernel
.Entry(int numberDimensions, ClusKernel cluster, long currentTime, Entry parentEntry, Node containerNode)
extended constructor with containerNode and parentEntry
-