kmeans
A C++ library for k-means
Loading...
Searching...
No Matches
compute_wcss.hpp
Go to the documentation of this file.
1#ifndef KMEANS_COMPUTE_WCSS_HPP
2#define KMEANS_COMPUTE_WCSS_HPP
3
4#include <algorithm>
5#include "Matrix.hpp"
6
12namespace kmeans {
13
29template<class Matrix_, typename Cluster_, typename Float_>
30void compute_wcss(const Matrix_& data, Cluster_ ncenters, const Float_* centers, const Cluster_* clusters, Float_* wcss) {
31 auto nobs = data.num_observations();
32 size_t ndim = data.num_dimensions();
33 std::fill_n(wcss, ncenters, 0);
34
35 auto work = data.new_extractor(0, nobs);
36 for (Index<Matrix_> obs = 0; obs < nobs; ++obs) {
37 auto curdata = work->get_observation();
38 auto cen = clusters[obs];
39 auto curcenter = centers + static_cast<size_t>(cen) * ndim; // cast to size_t to avoid overflow.
40
41 Float_& curwcss = wcss[cen];
42 for (size_t d = 0; d < ndim; ++d) {
43 Float_ delta = static_cast<Float_>(curdata[d]) - curcenter[d]; // cast for consistent precision regardless of Data_.
44 curwcss += delta * delta;
45 }
46 }
47}
48
49}
50
51#endif
Interface for matrix inputs.
Namespace for k-means clustering.
Definition compute_wcss.hpp:12
void compute_wcss(const Matrix_ &data, Cluster_ ncenters, const Float_ *centers, const Cluster_ *clusters, Float_ *wcss)
Definition compute_wcss.hpp:30