34 for (
size_t ni = 0; ni < dm.
n; ++ni) {
35 for (
size_t di = 0; di < d; ++di) {
36 float tmp = dm.
data[ni * d + di];
42 for (
size_t di = 0; di < d; ++di) {
84 const size_t max_points =
91 const size_t d =
dim();
92 std::vector<float> sums_adjust(d, 0), sqsums_adjust(d, 0);
96 for (; rn-- > 0; ++ri) {
99 for (
size_t di = 0; di < d; ++di) {
100 const auto &c =
config[di];
102 float tmp =
data[ri * d + di];
103 sums_adjust[di] -= tmp;
104 sqsums_adjust[di] -= tmp * tmp;
105 tmp = dm.
data[ri * d + di];
107 tmp += c.affine_adjust;
109 tmp = asinhf(tmp / c.asinh_cofactor);
111 data[ri * d + di] = tmp;
112 sums_adjust[di] += tmp;
113 sqsums_adjust[di] += tmp * tmp;
117 for (
size_t di = 0; di < d; ++di) {
118 sums[di] += sums_adjust[di];
119 sqsums[di] += sqsums_adjust[di];
137TransData::disable_col(
size_t c)
144TransData::enable_col(
size_t c)
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.
Storage of data from loaded input file.
std::vector< float > data
One-dimensional array storing d-dimensional input data in row-major order.
void touch()
Make the cache dirty.
void store_time(float &to)
Statistics from the untransformed dataset.
void update(const DataModel &dm)
Recomputes the statistics if the input data changed.
std::vector< float > means
Array containing means for each dimension.
std::vector< float > sds
Array containing standard deviations for each dimension.
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.
Configuration of single-dimension transformation.
void update(const DataModel &dm, const RawDataStats &s, 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.
size_t dim() const
Returns dimension of the transformed data.
void reset()
Resets configurations to their initial values.
std::vector< float > data
Transformed data in the same format as DataModel::data.
std::vector< float > sums
Array representing sums for each dimension.
BatchSizeGen batch_size_gen
std::vector< TransConfig > config
Separate configurations for each dimension.
std::vector< float > sqsums
Array representing square sums for each dimension.