35 if (ImGui::Begin(
"Training settings", &
show_window, window_flags)) {
40 if (ImGui::CollapsingHeader(
"SOM")) {
45 ImGui::SliderFloat(
"Alpha##SOM",
50 ImGuiSliderFlags_AlwaysClamp);
51 ImGui::SliderFloat(
"Sigma",
56 ImGuiSliderFlags_AlwaysClamp);
58 if (ImGui::CollapsingHeader(
"k-means")) {
59 ImGui::Checkbox(
"k-means##checkbox",
63 ImGui::SliderFloat(
"Alpha##k-means",
68 ImGuiSliderFlags_AlwaysClamp);
69 ImGui::SliderFloat(
"Gravity",
74 ImGuiSliderFlags_AlwaysClamp);
76 if (ImGui::CollapsingHeader(
"k-NN graph")) {
77 ImGui::Checkbox(
"Generate k-NN graph",
83 if (ImGui::CollapsingHeader(
"Graph layout")) {
84 ImGui::Checkbox(
"Layout the graph along the edge forces",
88 if (ImGui::CollapsingHeader(
"t-SNE")) {
89 ImGui::Checkbox(
"Layout the landmarks with t-SNE",
91 ImGui::SliderInt(
"k neighbors",
97 if (ImGui::CollapsingHeader(
"EmbedSOM")) {
98 if (ImGui::SliderInt(
"k (landmark neighborhood size)",
104 if (ImGui::SliderFloat(
"Boost",
109 ImGuiSliderFlags_AlwaysClamp))
112 if (ImGui::SliderFloat(
"Adjust",
117 ImGuiSliderFlags_AlwaysClamp))
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...
Storage of data of used algorithms and input events.
TrainingConfig training_conf
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.
void render(State &state, ImGuiWindowFlags window_flags)
Renders window with corresponding training settings widgets.
static bool reset_button()
ImGUI wrapper for reset button.