Tapkee
defaults.hpp
Go to the documentation of this file.
1 /* This software is distributed under BSD 3-clause license (see LICENSE file).
2  *
3  * Copyright (c) 2012-2013 Sergey Lisitsyn, Fernando Iglesias
4  */
5 
6 #ifndef TAPKEE_DEFAULTS_H_
7 #define TAPKEE_DEFAULTS_H_
8 
9 namespace tapkee
10 {
11 namespace tapkee_internal
12 {
13 
14 namespace {
15 const stichwort::ParametersSet defaults = (
16  tapkee::computation_strategy = stichwort::by_default,
17  tapkee::eigen_method = stichwort::by_default,
18  tapkee::neighbors_method = stichwort::by_default,
19  tapkee::num_neighbors = stichwort::by_default,
20  tapkee::target_dimension = stichwort::by_default,
21  tapkee::diffusion_map_timesteps = stichwort::by_default,
22  tapkee::gaussian_kernel_width = stichwort::by_default,
23  tapkee::max_iteration = stichwort::by_default,
24  tapkee::spe_global_strategy = stichwort::by_default,
25  tapkee::spe_num_updates = stichwort::by_default,
26  tapkee::spe_tolerance = stichwort::by_default,
27  tapkee::landmark_ratio = stichwort::by_default,
28  tapkee::nullspace_shift = stichwort::by_default,
29  tapkee::klle_shift = stichwort::by_default,
30  tapkee::check_connectivity = stichwort::by_default,
31  tapkee::fa_epsilon = stichwort::by_default,
32  tapkee::progress_function = stichwort::by_default,
33  tapkee::cancel_function = stichwort::by_default,
34  tapkee::sne_perplexity = stichwort::by_default,
35  tapkee::squishing_rate = stichwort::by_default,
36  tapkee::sne_theta = stichwort::by_default);
37 }
38 
39 }
40 }
41 
42 #endif