43 const size_t max_points =
50 std::vector<float> means = td.
sums;
51 std::vector<float> isds = td.
sqsums;
56 for (
size_t di = 0; di < d; ++di) {
59 isds[di] = 1 / sqrt(isds[di] - means[di] * means[di]);
64 for (; rn-- > 0; ++ri) {
67 for (
size_t di = 0; di < d; ++di)
69 (td.
data[ri * d + di] - means[di]) *
size_t next(float T, float t)
Computes size of the next batch.
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 touch()
Make the cache dirty.
void store_time(float &to)
Configuration of the single-dimension scaling.
std::vector< ScaleConfig > config
Separate configurations for each dimension.
void update(const TransData &td, FrameStats &frame_stats)
Recomputes the data if any of the config has been touched.
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
std::vector< float > data
Scaled data in the same format as DataModel::data.
size_t dim() const
Returns dimension of the scaled data.
void reset()
Resets configurations to their initial values.
BatchSizeGen batch_size_gen
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.
Storage of the transformed data.
size_t dim() const
Returns dimension of the transformed data.
std::vector< float > data
Transformed data in the same format as DataModel::data.
std::vector< float > sums
Array representing sums for each dimension.
std::vector< float > sqsums
Array representing square sums for each dimension.