BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
batch_size_gen.cpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#include "batch_size_gen.h"
20
21#include <array>
22#include <cmath>
23#include <limits>
24#include <random>
25#include <tuple>
26
28{
29 reset();
30}
31
32void
34{
36 N = 100;
37 prevT = 0.0f;
38}
39
40size_t
41BatchSizeGen::next(float T, float t)
42{
43 // If the algorithm should last 0ms, just return
44 // and reset values.
45 if (t == 0.0f) {
46 reset();
47 return N;
48 }
49
50 // Prevent increase of batch size to inifinity
51 // when SOM or kmeans is turned off or when no
52 // data set is loaded.
53 if (std::abs(prevT - T) < 0.0001f) {
54 reset();
55 return N;
56 }
57
59 auto [const_time, time_per_point] = estimator.get_estimate();
60
61 // Compute estimated number of points.
62 float n = (t - const_time) / time_per_point;
63 N = n <= 0 ? 100 : n;
64 prevT = T;
65
66 // Subtract random value from N.
67 std::random_device rd{};
68 std::mt19937 gen{ rd() };
69 std::normal_distribution<> d{ 100, 50 };
70 float rv = std::round(std::abs(d(gen)));
71
72 N = rv < N ? N - rv : N;
73
74 return N;
75}
size_t next(float T, float t)
Computes size of the next batch.
Estimator estimator
void process_measurement(size_t n, float t)
Definition: estimator.cpp:42
void reset()
Definition: estimator.cpp:29
std::tuple< float, float > get_estimate()
Definition: estimator.cpp:68