This struct represents parameters for a single trial run of kmedoids. More...
#include <trial.h>
Public Member Functions | |
trial () | |
trial (size_t _k, size_t _rep, size_t _sample_size) | |
trial (const trial &other) | |
Public Attributes | |
size_t | k |
size_t | rep |
size_t | sample_size |
This struct represents parameters for a single trial run of kmedoids.
We generate a bunch of these to farm all the trials out to processes when doing parallel clustering.
Each trial has a particular k (number of clusters), sample size, and repetition number (for successive samples with the same k).
Definition at line 52 of file trial.h.
trial | ( | size_t | _k, |
size_t | _rep, | ||
size_t | _sample_size | ||
) | [inline] |
size_t sample_size |