kmeans
A C++ library for k-means
|
Implements the mini-batch algorithm for k-means clustering. More...
#include <vector>
#include <algorithm>
#include <numeric>
#include <cstdint>
#include <stdexcept>
#include <limits>
#include <random>
#include <type_traits>
#include "aarand/aarand.hpp"
#include "Refine.hpp"
#include "Details.hpp"
#include "QuickSearch.hpp"
#include "is_edge_case.hpp"
#include "parallelize.hpp"
Go to the source code of this file.
Classes | |
struct | kmeans::RefineMiniBatchOptions |
Options for RefineMiniBatch construction. More... | |
class | kmeans::RefineMiniBatch< Matrix_, Cluster_, Float_ > |
Implements the mini-batch algorithm for k-means clustering. More... | |
Namespaces | |
namespace | kmeans |
Namespace for k-means clustering. | |
Implements the mini-batch algorithm for k-means clustering.