Uses of Interface
org.tribuo.math.neighbour.NeighboursQueryFactory
Packages that use NeighboursQueryFactory
Package
Description
Provides an implementation of HDBSCAN*.
Provides a K-Nearest Neighbours implementation which works across
all Tribuo
Output
types.Provides nearest neighbour query functionality.
Provides a brute-force nearest neighbour query implementation.
Provides a k-d tree nearest neighbour query implementation.
-
Uses of NeighboursQueryFactory in org.tribuo.clustering.hdbscan
Constructors in org.tribuo.clustering.hdbscan with parameters of type NeighboursQueryFactoryModifierConstructorDescriptionHdbscanTrainer
(int minClusterSize, int k, NeighboursQueryFactory neighboursQueryFactory) Constructs an HDBSCAN* trainer using the supplied parameters. -
Uses of NeighboursQueryFactory in org.tribuo.common.nearest
Constructors in org.tribuo.common.nearest with parameters of type NeighboursQueryFactoryModifierConstructorDescriptionKNNTrainer
(int k, int numThreads, EnsembleCombiner<T> combiner, KNNModel.Backend backend, NeighboursQueryFactory neighboursQueryFactory) Creates a K-NN trainer using the supplied parameters. -
Uses of NeighboursQueryFactory in org.tribuo.math.neighbour
Methods in org.tribuo.math.neighbour that return NeighboursQueryFactoryModifier and TypeMethodDescriptionstatic NeighboursQueryFactory
NeighboursQueryFactory.deserialize
(org.tribuo.math.protos.NeighbourFactoryProto proto) Deserialization helper for NeighboursQueryFactories.static NeighboursQueryFactory
NeighboursQueryFactoryType.getNeighboursQueryFactory
(NeighboursQueryFactoryType nqFactoryType, Distance distance, int numThreads) Returns the appropriateNeighboursQueryFactory
implementation. -
Uses of NeighboursQueryFactory in org.tribuo.math.neighbour.bruteforce
Classes in org.tribuo.math.neighbour.bruteforce that implement NeighboursQueryFactoryModifier and TypeClassDescriptionfinal class
A factory which creates brute-force nearest neighbour query objects. -
Uses of NeighboursQueryFactory in org.tribuo.math.neighbour.kdtree
Classes in org.tribuo.math.neighbour.kdtree that implement NeighboursQueryFactoryModifier and TypeClassDescriptionclass
A factory which creates k-d tree nearest neighbour query objects.