30 map<string, string> m;
32 map<string, vector<string>> a;
34 map<string, shared_ptr<settings::Key>> r;
37 m[
"number_of_elements" ] =
"";
39 m[
"atom_energy" ] =
"";
40 m[
"cutoff_type" ] =
"";
41 m[
"symfunction_short" ] =
"";
42 m[
"scale_symmetry_functions" ] =
"";
43 m[
"scale_min_short" ] =
"";
44 m[
"scale_max_short" ] =
"";
45 m[
"center_symmetry_functions" ] =
"";
46 m[
"scale_symmetry_functions_sigma" ] =
"";
47 m[
"global_hidden_layers_short" ] =
"";
48 m[
"global_hidden_layers_electrostatic" ] =
"";
49 m[
"global_nodes_short" ] =
"";
50 m[
"global_nodes_electrostatic" ] =
"";
51 m[
"global_activation_short" ] =
"";
52 m[
"global_activation_electrostatic" ] =
"";
53 m[
"element_hidden_layers_short" ] =
"";
54 m[
"element_hidden_layers_electrostatic"] =
"";
55 m[
"element_nodes_short" ] =
"";
56 m[
"element_nodes_electrostatic" ] =
"";
57 m[
"element_activation_short" ] =
"";
58 m[
"element_activation_electrostatic" ] =
"";
59 m[
"normalize_nodes" ] =
"";
60 m[
"mean_energy" ] =
"";
61 m[
"conv_length" ] =
"";
62 m[
"conv_energy" ] =
"";
63 m[
"conv_charge" ] =
"";
65 m[
"fixed_gausswidth" ] =
"";
66 m[
"ewald_truncation_error_method" ] =
"";
67 m[
"kspace_solver" ] =
"";
68 m[
"ewald_prec" ] =
"";
69 m[
"screen_electrostatics" ] =
"";
70 m[
"four_pi_epsilon" ] =
"";
73 m[
"random_seed" ] =
"";
74 m[
"test_fraction" ] =
"";
76 m[
"normalize_data_set" ] =
"";
77 m[
"use_short_forces" ] =
"";
78 m[
"rmse_threshold" ] =
"";
79 m[
"rmse_threshold_energy" ] =
"";
80 m[
"rmse_threshold_force" ] =
"";
81 m[
"rmse_threshold_charge" ] =
"";
82 m[
"rmse_threshold_trials" ] =
"";
83 m[
"rmse_threshold_trials_energy" ] =
"";
84 m[
"rmse_threshold_trials_force" ] =
"";
85 m[
"rmse_threshold_trials_charge" ] =
"";
86 m[
"energy_fraction" ] =
"";
87 m[
"force_fraction" ] =
"";
88 m[
"force_energy_ratio" ] =
"";
89 m[
"charge_fraction" ] =
"";
90 m[
"use_old_weights_short" ] =
"";
91 m[
"use_old_weights_charge" ] =
"";
92 m[
"weights_min" ] =
"";
93 m[
"weights_max" ] =
"";
94 m[
"initial_hardness" ] =
"";
95 m[
"nguyen_widrow_weights_short" ] =
"";
96 m[
"nguyen_widrow_weights_charge" ] =
"";
97 m[
"precondition_weights" ] =
"";
98 m[
"main_error_metric" ] =
"";
99 m[
"write_trainpoints" ] =
"";
100 m[
"write_trainforces" ] =
"";
101 m[
"write_traincharges" ] =
"";
102 m[
"write_weights_epoch" ] =
"";
103 m[
"write_neuronstats" ] =
"";
104 m[
"write_trainlog" ] =
"";
105 m[
"repeated_energy_update" ] =
"";
106 m[
"updater_type" ] =
"";
107 m[
"parallel_mode" ] =
"";
108 m[
"jacobian_mode" ] =
"";
109 m[
"update_strategy" ] =
"";
110 m[
"selection_mode" ] =
"";
111 m[
"selection_mode_energy" ] =
"";
112 m[
"selection_mode_force" ] =
"";
113 m[
"selection_mode_charge" ] =
"";
114 m[
"task_batch_size_energy" ] =
"";
115 m[
"task_batch_size_force" ] =
"";
116 m[
"task_batch_size_charge" ] =
"";
117 m[
"gradient_type" ] =
"";
118 m[
"gradient_eta" ] =
"";
119 m[
"gradient_adam_eta" ] =
"";
120 m[
"gradient_adam_beta1" ] =
"";
121 m[
"gradient_adam_beta2" ] =
"";
122 m[
"gradient_adam_epsilon" ] =
"";
123 m[
"kalman_type" ] =
"";
124 m[
"kalman_epsilon" ] =
"";
125 m[
"kalman_eta" ] =
"";
126 m[
"kalman_etatau" ] =
"";
127 m[
"kalman_etamax" ] =
"";
128 m[
"kalman_q0" ] =
"";
129 m[
"kalman_qtau" ] =
"";
130 m[
"kalman_qmin" ] =
"";
131 m[
"kalman_lambda_short" ] =
"";
132 m[
"kalman_nue_short" ] =
"";
133 m[
"memorize_symfunc_results" ] =
"";
134 m[
"force_weight" ] =
"";
137 a[
"nnp_type" ] = {
"nnp_generation",
"nnp_type_gen",
"nnp_gen"};
138 a[
"rmse_threshold_energy"] = {
"short_energy_error_threshold"};
139 a[
"rmse_threshold_force" ] = {
"short_force_error_threshold"};
140 a[
"energy_fraction" ] = {
"short_energy_fraction"};
141 a[
"force_fraction" ] = {
"short_force_fraction"};
142 a[
"symfunction_short" ] = {
"symfunction"};
147 if (r.find(im.first) != r.end())
149 throw runtime_error(
"ERROR: Multiple definition of keyword.\n");
152 r[im.first] = make_shared<settings::Key>();
154 r.at(im.first)->addAlternative(im.first);
156 r.at(im.first)->setDescription(im.second);
158 if (a.find(im.first) != a.end())
161 for (
auto alt : a.at(im.first))
164 if (r.find(alt) != r.end())
166 throw runtime_error(
"ERROR: Multiple definition of "
167 "alternative keyword.\n");
170 r[alt] = r.at(im.first);
172 r[alt]->addAlternative(alt);
196 bool const exact)
const
204 throw runtime_error(
"ERROR: Not in the list of allowed keyword: \"" +
230 throw std::runtime_error(
"ERROR: Keyword \"" + keyword
231 +
"\" not found.\n");
235 throw std::runtime_error(
"ERROR: Neither keyword \"" + keyword
236 +
"\" nor alternative keywords found.\n");
286 throw runtime_error(
"ERROR: Could not open file: \"" +
fileName
290 while (getline(file, line))
292 lines.push_back(line);
303 map<size_t, string>
const& replacements)
const
305 if (!file->is_open())
307 runtime_error(
"ERROR: Could not write to file.\n");
311 for (
auto const& l :
lines)
313 if (replacements.find(i) != replacements.end())
315 (*file) << replacements.at(i);
317 else (*file) << l <<
'\n';
326 for (
size_t i = 0; i <
lines.size(); ++i)
328 string line =
lines.at(i);
340 if (line.find(
'#') != string::npos)
342 line.erase(line.find(
'#'));
344 if (line.find(
'!') != string::npos)
346 line.erase(line.find(
'!'));
348 if (line.find_first_not_of(
' ') == string::npos)
357 size_t const separatorPosition = line.find_first_of(
" ");
359 pair<string, size_t> value;
361 if (separatorPosition == string::npos)
365 value = pair<string, size_t>(
"", i);
370 key = line.substr(0, separatorPosition);
371 value = pair<string, size_t>(line.erase(0, separatorPosition + 1),
375 contents.insert(pair<
string, pair<string, size_t> >(key, value));
378 size_t numProblems = 0;
379 size_t numCritical = 0;
383 log.push_back(
strpr(
"WARNING: %zu problems detected (%zu critical).\n",
384 numProblems, numCritical));
394 size_t countProblems = 0;
395 size_t countCritical = 0;
398 for (multimap<
string, pair<string, size_t> >::const_iterator
405 "WARNING: Unknown keyword \"%s\" at line %zu.\n",
407 (*it).second.second + 1));
416 && (*it).first !=
"symfunction"
417 && (*it).first !=
"symfunction_short"
418 && (*it).first !=
"atom_energy"
419 && (*it).first !=
"element_nodes_short"
420 && (*it).first !=
"fixed_gausswidth"
421 && (*it).first !=
"initial_hardness")
426 "WARNING (CRITICAL): Multiple instances of \"%s\" detected.\n",
427 (*it).first.c_str()));
435 if (it->second->hasUniqueKeyword())
continue;
436 vector<string> duplicates;
437 for (
auto keyword : *it->second)
441 duplicates.push_back(keyword);
444 if (duplicates.size() > 1)
449 "WARNING (CRITICAL): Multiple alternative versions of keyword "
450 "\"%s\" detected:.\n", (*it).first.c_str()));
451 for (
auto d : duplicates)
454 " - \"%s\"\n",
d.c_str()));
459 return make_pair(countProblems, countCritical);
map< string, shared_ptr< settings::Key > > const createKnownKeywordsMap()
std::string getMainKeyword() const
std::vector< std::string > info() const
Get logged information about settings file.
std::string keywordCheck(std::string const &keyword) const
Check for keyword and alternatives, throw exception if not present.
static KeywordList knownKeywords
Map containing all known keywords and a description.
std::vector< std::string > lines
Vector of all lines in settings file.
std::string getValue(Key const &key) const override
void writeSettingsFile(std::ofstream *const &file, std::map< std::size_t, std::string > const &replacements={}) const
Write complete settings file.
std::pair< KeyMap::const_iterator, KeyMap::const_iterator > KeyRange
std::size_t loadFile(std::string const &fileName="input.nn")
Load a file with settings.
std::map< std::string, std::shared_ptr< Key > > const KeywordList
KeyRange getValues(std::string const &keyword) const
Get all keyword-value pairs for given keyword.
std::vector< std::string > log
Vector with log lines.
std::string fileName
Settings file name.
KeyMap contents
Map containing all keyword-value pairs.
std::vector< std::string > getSettingsLines() const
Get complete settings file.
bool keywordExists(Key const &key, bool const exact=false) const override
std::size_t parseLines()
Parse lines and create contents map.
void readFile()
Read file once and save all lines in lines vector.
std::pair< std::size_t, std::size_t > sanityCheck()
Check if all keywords are in known-keywords database and for duplicates.
std::string operator[](std::string const &keyword) const
Overload [] operator.
string strpr(const char *format,...)
String version of printf function.
string reduce(string const &line, string const &whitespace, string const &fill)
Replace multiple whitespaces with fill.