Uses of Class
com.gpudb.protocol.AggregateKMeansRequest
-
Packages that use AggregateKMeansRequest Package Description com.gpudb com.gpudb.protocol -
-
Uses of AggregateKMeansRequest in com.gpudb
Methods in com.gpudb with parameters of type AggregateKMeansRequest Modifier and Type Method Description AggregateKMeansResponseGPUdb. aggregateKMeans(AggregateKMeansRequest request)This endpoint runs the k-means algorithm - a heuristic algorithm that attempts to do k-means clustering. -
Uses of AggregateKMeansRequest in com.gpudb.protocol
Methods in com.gpudb.protocol that return AggregateKMeansRequest Modifier and Type Method Description AggregateKMeansRequestAggregateKMeansRequest. setColumnNames(List<String> columnNames)List of column names on which the operation would be performed.AggregateKMeansRequestAggregateKMeansRequest. setK(int k)The number of mean points to be determined by the algorithm.AggregateKMeansRequestAggregateKMeansRequest. setOptions(Map<String,String> options)Optional parameters.AggregateKMeansRequestAggregateKMeansRequest. setTableName(String tableName)Name of the table on which the operation will be performed.AggregateKMeansRequestAggregateKMeansRequest. setTolerance(double tolerance)Stop iterating when the distances between successive points is less than the given tolerance.
-