BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
src
batch_size_gen.h
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
#ifndef BATCH_SIZE_GEN_H
20
#define BATCH_SIZE_GEN_H
21
22
#include <cstddef>
23
24
#include "
estimator.h
"
25
26
/**
27
* @brief Generator of the size of the next point batch. It implements MLEM
28
* algorithm described in the thesis text.
29
*
30
*/
31
class
BatchSizeGen
32
{
33
public
:
34
BatchSizeGen
();
35
36
void
reset
();
37
38
/**
39
* @brief Computes size of the next batch.
40
*
41
* @param T How long the computation lasted in the previous frame.
42
* @param t How long the computation should run in the current frame.
43
* @return size_t
44
*/
45
size_t
next
(
float
T,
float
t);
46
47
private
:
48
Estimator
estimator
;
49
size_t
N
;
50
float
prevT
;
51
};
52
53
#endif
// #ifndef BATCH_SIZE_GEN_H
BatchSizeGen
Generator of the size of the next point batch.
Definition:
batch_size_gen.h:32
BatchSizeGen::next
size_t next(float T, float t)
Computes size of the next batch.
Definition:
batch_size_gen.cpp:41
BatchSizeGen::BatchSizeGen
BatchSizeGen()
Definition:
batch_size_gen.cpp:27
BatchSizeGen::reset
void reset()
Definition:
batch_size_gen.cpp:33
BatchSizeGen::N
size_t N
Definition:
batch_size_gen.h:49
BatchSizeGen::estimator
Estimator estimator
Definition:
batch_size_gen.h:48
BatchSizeGen::prevT
float prevT
Definition:
batch_size_gen.h:50
Estimator
Definition:
estimator.h:27
estimator.h
Generated by
1.9.4