Uses of Class
moa.clusterers.clustree.Entry
-
Packages that use Entry Package Description moa.clusterers.clustree -
-
Uses of Entry in moa.clusterers.clustree
Methods in moa.clusterers.clustree that return Entry Modifier and Type Method Description Entry[]
Node. getEntries()
Return an array with references to the children of this node.protected Entry
Node. getIrrelevantEntry(double threshold)
If there exists an entry, whose relevance is under the threshold given as a parameter to the tree, this entry is returned.Entry
Entry. getParentEntry()
Entry
Node. nearestEntry(ClusKernel buffer)
Returns the neareastEntry
to the givenCluster
.protected Entry
Node. nearestEntry(Entry newEntry)
Return the nearest entry to the given one.Methods in moa.clusterers.clustree with parameters of type Entry Modifier and Type Method Description void
Entry. add(Entry other)
Add the data cluster of another entry to the data cluster of this entry.void
Node. addEntry(Entry newEntry, long currentTime)
Add a newEntry
to this node.protected void
Entry. aggregateEntry(Entry other, long currentTime, double negLambda)
Aggregate thedata
in theKernel
of the otherEntry
.double
Entry. calcDistance(Entry other)
Calculates the distance to the data in this entry of the data in the given entry.protected void
Entry. initializeEntry(Entry other, long currentTime)
When this entry is empty, give it it's first values.protected void
Entry. mergeWith(Entry other)
Merge this entry witht the givenEntry
.protected Entry
Node. nearestEntry(Entry newEntry)
Return the nearest entry to the given one.protected void
Entry. overwriteOldEntry(Entry newEntry)
Overwrites the LS, SS and weightedN in the data cluster of thisEntry
to the values of the data cluster in the givenEntry
, but adds N and classCount of the cluster in the given Entry to the data cluster in this one.void
Entry. setParentEntry(Entry parent)
Constructors in moa.clusterers.clustree with parameters of type Entry Constructor Description Entry(int numberDimensions, ClusKernel cluster, long currentTime, Entry parentEntry, Node containerNode)
extended constructor with containerNode and parentEntryEntry(int numberDimensions, Node node, long currentTime, Entry parentEntry, Node containerNode)
Constructor that creates anEntry
that points to the given node.Entry(Entry other)
Copy constructor.Node(int numberDimensions, int level, Entry[] argEntries)
USED FOR EM_TOP_DOWN BULK LOADING
-