65 if (lm.
d != d.
dim()) {
75 auto do_embedsom = [&](
size_t from,
size_t n) {
100 if (ri + rn >= d.
n) {
103 size_t diff = d.
n - ri;
104 do_embedsom(ri, diff);
size_t next(float T, float t)
Computes size of the next batch.
void embedsom(size_t n, size_t n_landmarks, size_t dim, float boost, size_t topn, float adjust, const float *points, const float *hidim_lm, const float *lodim_lm, float *embedding)
void clean(const Dirt &d)
Call this when the cache is refreshed.
bool dirty(const Dirt &d)
Returns true if the cache needs to be refreshed.
void store_time(float &to)
Model of the high- and low-dimensional landmarks.
size_t n_landmarks() const
Reurns number of the 2D landmarks.
std::vector< glm::vec2 > lodim_vertices
Array storing two-dimensional landmark coordinates.
std::vector< float > hidim_vertices
One-dimensional array storing d-dimensional landmark coordinates in row-major order.
Storage of the scaled data.
std::vector< float > data
Scaled data in the same format as DataModel::data.
size_t dim() const
Returns dimension of the scaled data.
std::vector< glm::vec2 > points
Coordinates of the two-dimensional data points.
BatchSizeGen batch_size_gen
void update(const ScaledData &d, const LandmarkModel &lm, const TrainingConfig &tc, FrameStats &frame_stats)
Recomputes the coordinates if any of the the parameters of the embedsom algorithm has changed.
std::tuple< size_t, size_t > dirty_range(const Dirts &d)
Find the range to refresh.
void clean_range(const Dirts &d, size_t n)
Clean a range of the cache.
void refresh(const Dirts &d)
Force-refresh the whole range.
Storage of the dynamic parameters of the algorithms that are set in the GUI by user.
float boost
Boost value for EmbedSOM algorithm.
float adjust
Adjust value for EmbedSOM algorithm.
int topn
Landmark neighborhood size value for EmbedSOM algorithm.