BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
ui_train.cpp
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#include "ui_train.h"
21
22#include "utils_imgui.hpp"
23
25 : show_window(false)
26{
27}
28
29void
30UiTrainingSettings::render(State &state, ImGuiWindowFlags window_flags)
31{
32 if (!show_window)
33 return;
34
35 if (ImGui::Begin("Training settings", &show_window, window_flags)) {
36 if (reset_button()) {
38 }
39
40 if (ImGui::CollapsingHeader("SOM")) {
41 ImGui::Checkbox("SOM##checkbox", &state.training_conf.som_landmark);
42 ImGui::SliderInt(
43 "Iterations##SOM", &state.training_conf.som_iters, 0, 200);
44
45 ImGui::SliderFloat("Alpha##SOM", // TODO: logarithmically
47 0.001f,
48 2.0f,
49 "%.3f",
50 ImGuiSliderFlags_AlwaysClamp);
51 ImGui::SliderFloat("Sigma", // TODO: odmocninovo
52 &state.training_conf.sigma,
53 0.1f,
54 5.0f,
55 "%.3f",
56 ImGuiSliderFlags_AlwaysClamp);
57 }
58 if (ImGui::CollapsingHeader("k-means")) {
59 ImGui::Checkbox("k-means##checkbox",
61 ImGui::SliderInt(
62 "Iterations##k-means", &state.training_conf.kmeans_iters, 0, 200);
63 ImGui::SliderFloat("Alpha##k-means", // TODO: logarithmically
65 0.001f,
66 2.0f,
67 "%.3f",
68 ImGuiSliderFlags_AlwaysClamp);
69 ImGui::SliderFloat("Gravity", // TODO: exponencialne
71 0.0f,
72 0.1f,
73 "%.3f",
74 ImGuiSliderFlags_AlwaysClamp);
75 }
76 if (ImGui::CollapsingHeader("k-NN graph")) {
77 ImGui::Checkbox("Generate k-NN graph",
79 ImGui::SliderInt(
80 "Graph neighbors (k)", &state.training_conf.kns, 0, 10);
81 }
82
83 if (ImGui::CollapsingHeader("Graph layout")) {
84 ImGui::Checkbox("Layout the graph along the edge forces",
86 }
87
88 if (ImGui::CollapsingHeader("t-SNE")) {
89 ImGui::Checkbox("Layout the landmarks with t-SNE",
91 ImGui::SliderInt("k neighbors",
92 &state.training_conf.tsne_k,
93 3,
94 state.landmarks.n_landmarks());
95 }
96
97 if (ImGui::CollapsingHeader("EmbedSOM")) {
98 if (ImGui::SliderInt("k (landmark neighborhood size)",
99 &state.training_conf.topn,
100 3,
101 32))
102 state.scatter.touch_config();
103
104 if (ImGui::SliderFloat("Boost", // TODO: use smooth instead
105 &state.training_conf.boost,
106 0.2f,
107 5.0f,
108 "%.3f",
109 ImGuiSliderFlags_AlwaysClamp))
110 state.scatter.touch_config();
111
112 if (ImGui::SliderFloat("Adjust",
113 &state.training_conf.adjust,
114 0.0f,
115 2.0f,
116 "%.3f",
117 ImGuiSliderFlags_AlwaysClamp))
118 state.scatter.touch_config();
119 }
120
121 ImGui::End();
122 }
123}
size_t n_landmarks() const
Reurns number of the 2D landmarks.
void touch_config()
Notifies Sweeper that the parameters of the embedsom algorithm has been modified and that the coordin...
Definition: scatter_model.h:73
Storage of data of used algorithms and input events.
Definition: state.h:50
ScatterModel scatter
Definition: state.h:64
LandmarkModel landmarks
Definition: state.h:55
TrainingConfig training_conf
Definition: state.h:57
float sigma
Sigma value for SOM algorithm.
float boost
Boost value for EmbedSOM algorithm.
int kmeans_iters
Number of iterations value for kmeans algorithm.
float som_alpha
Alpha value for SOM algorithm.
bool tsne_layout
Flag that indicates if the t-SNE algorithm should be used.
int kns
k-neighbors value for generating knn graph algorithm.
float adjust
Adjust value for EmbedSOM algorithm.
int som_iters
Number of iterations value for SOM algorithm.
float gravity
Gravity value for kmeans algorithm.
int tsne_k
k-neighbors value for t-SNE algorithm.
bool graph_layout
Flag that indicates if the graph layout algorithm should be used.
float kmeans_alpha
Alpha value for kmeans algorithm.
bool som_landmark
Flag that indicates if the SOM algorithm should be used.
bool kmeans_landmark
Flag that indicates if the kmeans algorithm should be used.
bool knn_edges
Flag that indicates if the kNN graph should be generated.
int topn
Landmark neighborhood size value for EmbedSOM algorithm.
void reset_data()
Resets values to their default values.
bool show_window
If the training settings window should be rendered.
Definition: ui_train.h:33
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding training settings widgets.
Definition: ui_train.cpp:30
static bool reset_button()
ImGUI wrapper for reset button.
Definition: utils_imgui.hpp:59