Validation scores¶
Provides fucntions for computing scores validating the quality of the clustering.
- Authors
Simone Balducci, Felice Pantaleo, Marco Rovere, Wahid Redjeb, Aurora Perego, Francesco Giacomini
-
namespace clue¶
Functions¶
-
template<std::size_t Ndim, std::floating_point TData = float>
auto silhouette(const clue::PointsHost<Ndim, TData> &points, std::size_t point)¶ Compute the silhouette score for a specific point in the dataset.
Note
This function currently only works for points with non-periodic coordinates.
-
template<std::size_t Ndim, std::floating_point TData = float>
auto silhouette(const clue::PointsHost<Ndim, TData> &points)¶ Compute the average silhouette score for the entire dataset.
Note
This function currently only works for points with non-periodic coordinates.
-
template<std::size_t Ndim, std::floating_point TData = float>