BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
scaled_data.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef SCALED_DATA_H
21#define SCALED_DATA_H
22
23#include "batch_size_gen.h"
24#include "frame_stats.h"
25#include "trans_data.h"
26#include <vector>
27
28/**
29 * @brief Configuration of the single-dimension scaling.
30 *
31 */
33{
34 /** Factor of the scaling. */
35 bool scale;
36 /** Standard deviation. */
37 float sdev;
38
40 : scale(false)
41 , sdev(1)
42 {
43 }
44};
45
46/**
47 * @brief Storage of the scaled data.
48 *
49 */
51 : public Sweeper
52 , public Dirts
53{
54 /** Scaled data in the same format as @ref DataModel::data. */
55 std::vector<float> data;
56 /** Separate configurations for each dimension. */
57 std::vector<ScaleConfig> config;
58
60
61 /**
62 * @brief Returns dimension of the scaled data.
63 *
64 * @return size_t Dimension of the scaled data.
65 */
66 size_t dim() const { return config.size(); }
67
68 /**
69 * @brief Notifies @ref Sweeper that the config has been modified and that
70 * the data has to be recomputed.
71 *
72 */
73 void touch_config() { refresh(*this); }
74
75 /**
76 * @brief Recomputes the data if any of the config has been touched.
77 *
78 * @param td Transformed data received from the data flow pipeline.
79 */
80 void update(const TransData &td, FrameStats &frame_stats);
81 /**
82 * @brief Resets configurations to their initial values.
83 *
84 */
85 void reset();
86};
87
88#endif
Generator of the size of the next point batch.
Multi-piece cache-dirtying object.
Definition: dirty.h:82
Configuration of the single-dimension scaling.
Definition: scaled_data.h:33
bool scale
Factor of the scaling.
Definition: scaled_data.h:35
float sdev
Standard deviation.
Definition: scaled_data.h:37
Storage of the scaled data.
Definition: scaled_data.h:53
std::vector< ScaleConfig > config
Separate configurations for each dimension.
Definition: scaled_data.h:57
void update(const TransData &td, FrameStats &frame_stats)
Recomputes the data if any of the config has been touched.
Definition: scaled_data.cpp:25
void touch_config()
Notifies Sweeper that the config has been modified and that the data has to be recomputed.
Definition: scaled_data.h:73
std::vector< float > data
Scaled data in the same format as DataModel::data.
Definition: scaled_data.h:55
size_t dim() const
Returns dimension of the scaled data.
Definition: scaled_data.h:66
void reset()
Resets configurations to their initial values.
Definition: scaled_data.cpp:79
BatchSizeGen batch_size_gen
Definition: scaled_data.h:59
A piece of multi-object cache.
Definition: dirty.h:95
void refresh(const Dirts &d)
Force-refresh the whole range.
Definition: dirty.h:105
Storage of the transformed data.
Definition: trans_data.h:74