source: src/LevMartester.cpp@ 691be4

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 691be4 was 691be4, checked in by Frederik Heber <heber@…>, 12 years ago

FunctionArgument now contains charges, too, and rewrote Extractors accordingly.

  • gatherDistancesFromFragment is now what we mostly want: Returns exactly the arguments in the way we specify.
  • PairPotential_AngleUnitTest now has gives additional types to potential's cstor.
  • Property mode set to 100644
File size: 15.4 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2012 University of Bonn. All rights reserved.
5 * Please see the COPYING file or "Copyright notice" in builder.cpp for details.
6 *
7 *
8 * This file is part of MoleCuilder.
9 *
10 * MoleCuilder is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * MoleCuilder is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24/*
25 * LevMartester.cpp
26 *
27 * Created on: Sep 27, 2012
28 * Author: heber
29 */
30
31
32// include config.h
33#ifdef HAVE_CONFIG_H
34#include <config.h>
35#endif
36
37#include <boost/archive/text_iarchive.hpp>
38
39#include "CodePatterns/MemDebug.hpp"
40
41#include <boost/assign.hpp>
42#include <boost/bind.hpp>
43#include <boost/filesystem.hpp>
44#include <boost/function.hpp>
45#include <boost/program_options.hpp>
46
47#include <cstdlib>
48#include <ctime>
49#include <fstream>
50#include <iostream>
51#include <iterator>
52#include <list>
53#include <vector>
54
55#include <levmar.h>
56
57#include "CodePatterns/Assert.hpp"
58#include "CodePatterns/Log.hpp"
59
60#include "LinearAlgebra/Vector.hpp"
61
62#include "Fragmentation/Homology/HomologyContainer.hpp"
63#include "Fragmentation/SetValues/Fragment.hpp"
64#include "FunctionApproximation/Extractors.hpp"
65#include "FunctionApproximation/FunctionApproximation.hpp"
66#include "FunctionApproximation/FunctionModel.hpp"
67#include "FunctionApproximation/TrainingData.hpp"
68#include "FunctionApproximation/writeDistanceEnergyTable.hpp"
69#include "Helpers/defs.hpp"
70#include "Potentials/Specifics/PairPotential_Morse.hpp"
71#include "Potentials/Specifics/PairPotential_Angle.hpp"
72#include "Potentials/Specifics/SaturationPotential.hpp"
73#include "types.hpp"
74
75namespace po = boost::program_options;
76
77using namespace boost::assign;
78
79HomologyGraph getFirstGraphwithTimesSpecificElement(
80 const HomologyContainer &homologies,
81 const size_t _number,
82 const size_t _times)
83{
84 for (HomologyContainer::container_t::const_iterator iter =
85 homologies.begin(); iter != homologies.end(); ++iter) {
86 if (iter->first.hasTimesAtomicNumber(_number,_times))
87 return iter->first;
88 }
89 return HomologyGraph();
90}
91
92/** This function returns the elements of the sum over index "k" for an
93 * argument containing indices "i" and "j"
94 * @param inputs vector of all configuration (containing each a vector of all arguments)
95 * @param arg argument containing indices "i" and "j"
96 * @param cutoff cutoff criterion for sum over k
97 * @return vector of argument pairs (a vector) of ik and jk for at least all k
98 * within distance of \a cutoff to i
99 */
100std::vector<FunctionModel::arguments_t>
101getTripleFromArgument(const FunctionApproximation::inputs_t &inputs, const argument_t &arg, const double cutoff)
102{
103 typedef std::list<argument_t> arg_list_t;
104 typedef std::map<size_t, arg_list_t > k_args_map_t;
105 k_args_map_t tempresult;
106 ASSERT( inputs.size() > arg.globalid,
107 "getTripleFromArgument() - globalid "+toString(arg.globalid)
108 +" is greater than all inputs "+toString(inputs.size())+".");
109 const FunctionModel::arguments_t &listofargs = inputs[arg.globalid];
110 for (FunctionModel::arguments_t::const_iterator argiter = listofargs.begin();
111 argiter != listofargs.end();
112 ++argiter) {
113 // first index must be either i or j but second index not
114 if (((argiter->indices.first == arg.indices.first)
115 || (argiter->indices.first == arg.indices.second))
116 && ((argiter->indices.second != arg.indices.first)
117 && (argiter->indices.second != arg.indices.second))) {
118 // we need arguments ik and jk
119 std::pair< k_args_map_t::iterator, bool> inserter =
120 tempresult.insert( std::make_pair( argiter->indices.second, arg_list_t(1,*argiter)));
121 if (!inserter.second) {
122 // is present one ik or jk, if ik insert jk at back
123 if (inserter.first->second.begin()->indices.first == arg.indices.first)
124 inserter.first->second.push_back(*argiter);
125 else // if jk, insert ik at front
126 inserter.first->second.push_front(*argiter);
127 }
128 }
129// // or second index must be either i or j but first index not
130// else if (((argiter->indices.first != arg.indices.first)
131// && (argiter->indices.first != arg.indices.second))
132// && ((argiter->indices.second == arg.indices.first)
133// || (argiter->indices.second == arg.indices.second))) {
134// // we need arguments ki and kj
135// std::pair< k_args_map_t::iterator, bool> inserter =
136// tempresult.insert( std::make_pair( argiter->indices.first, arg_list_t(1,*argiter)));
137// if (!inserter.second) {
138// // is present one ki or kj, if ki insert kj at back
139// if (inserter.first->second.begin()->indices.second == arg.indices.first)
140// inserter.first->second.push_back(*argiter);
141// else // if kj, insert ki at front
142// inserter.first->second.push_front(*argiter);
143// }
144// }
145 }
146 // check that i,j are NOT contained
147 ASSERT( tempresult.count(arg.indices.first) == 0,
148 "getTripleFromArgument() - first index of argument present in k_args_map?");
149 ASSERT( tempresult.count(arg.indices.second) == 0,
150 "getTripleFromArgument() - first index of argument present in k_args_map?");
151
152 // convert
153 std::vector<FunctionModel::arguments_t> result;
154 for (k_args_map_t::const_iterator iter = tempresult.begin();
155 iter != tempresult.end();
156 ++iter) {
157 ASSERT( iter->second.size() == 2,
158 "getTripleFromArgument() - for index "+toString(iter->first)+" we did not find both ik and jk.");
159 result.push_back( FunctionModel::arguments_t(iter->second.begin(), iter->second.end()) );
160 }
161 return result;
162}
163
164int main(int argc, char **argv)
165{
166 std::cout << "Hello to the World from LevMar!" << std::endl;
167
168 // load homology file
169 po::options_description desc("Allowed options");
170 desc.add_options()
171 ("help", "produce help message")
172 ("homology-file", po::value< boost::filesystem::path >(), "homology file to parse")
173 ;
174
175 po::variables_map vm;
176 po::store(po::parse_command_line(argc, argv, desc), vm);
177 po::notify(vm);
178
179 if (vm.count("help")) {
180 std::cout << desc << "\n";
181 return 1;
182 }
183
184 boost::filesystem::path homology_file;
185 if (vm.count("homology-file")) {
186 homology_file = vm["homology-file"].as<boost::filesystem::path>();
187 LOG(1, "INFO: Parsing " << homology_file.string() << ".");
188 } else {
189 LOG(0, "homology-file level was not set.");
190 }
191 HomologyContainer homologies;
192 if (boost::filesystem::exists(homology_file)) {
193 std::ifstream returnstream(homology_file.string().c_str());
194 if (returnstream.good()) {
195 boost::archive::text_iarchive ia(returnstream);
196 ia >> homologies;
197 } else {
198 ELOG(2, "Failed to parse from " << homology_file.string() << ".");
199 }
200 returnstream.close();
201 } else {
202 ELOG(0, homology_file << " does not exist.");
203 }
204
205 // first we try to look into the HomologyContainer
206 LOG(1, "INFO: Listing all present homologies ...");
207 for (HomologyContainer::container_t::const_iterator iter =
208 homologies.begin(); iter != homologies.end(); ++iter) {
209 LOG(1, "INFO: graph " << iter->first << " has Fragment "
210 << iter->second.first << " and associated energy " << iter->second.second << ".");
211 }
212
213 /******************** Angle TRAINING ********************/
214 {
215 // then we ought to pick the right HomologyGraph ...
216 const HomologyGraph graph = getFirstGraphwithTimesSpecificElement(homologies,8,1);
217 if (graph != HomologyGraph()) {
218 LOG(1, "First representative graph containing three saturated carbons is " << graph << ".");
219
220 // Afterwards we go through all of this type and gather the distance and the energy value
221 Fragment::charges_t h2o;
222 h2o += 8,1,1;
223 TrainingData AngleData(
224 boost::bind(&Extractors::gatherDistancesFromFragment,
225 boost::bind(&Fragment::getPositions, _1),
226 boost::bind(&Fragment::getCharges, _1),
227 boost::cref(h2o),
228 _2)
229 );
230 AngleData(homologies.getHomologousGraphs(graph));
231 LOG(1, "INFO: I gathered the following training data: " << AngleData);
232 // NOTICE that distance are in bohrradi as they come from MPQC!
233
234 // now perform the function approximation by optimizing the model function
235 FunctionModel::parameters_t params(PairPotential_Angle::MAXPARAMS, 0.);
236 params[PairPotential_Angle::energy_offset] = -1.;
237 params[PairPotential_Angle::spring_constant] = 1.;
238 params[PairPotential_Angle::equilibrium_distance] = 0.2;
239 PairPotential_Angle angle;
240 LOG(0, "INFO: Initial parameters are " << params << ".");
241 angle.setParameters(params);
242 FunctionModel &model = angle;
243 FunctionApproximation approximator(AngleData, model);
244 if (model.isBoxConstraint() && approximator.checkParameterDerivatives())
245 approximator(FunctionApproximation::ParameterDerivative);
246 else {
247 ELOG(0, "We require parameter derivatives for a box constraint minimization.");
248 return 1;
249 }
250 params = model.getParameters();
251
252 LOG(0, "RESULT: Best parameters are " << params << ".");
253 }
254 }
255
256 /******************** MORSE TRAINING ********************/
257 {
258 // then we ought to pick the right HomologyGraph ...
259 const HomologyGraph graph = getFirstGraphwithTimesSpecificElement(homologies,8,1);
260 if (graph != HomologyGraph()) {
261 LOG(1, "First representative graph containing two saturated carbons is " << graph << ".");
262
263 // Afterwards we go through all of this type and gather the distance and the energy value
264 Fragment::charges_t h2o;
265 h2o += 8,1;
266 TrainingData MorseData(
267 boost::bind(&Extractors::gatherDistancesFromFragment,
268 boost::bind(&Fragment::getPositions, _1),
269 boost::bind(&Fragment::getCharges, _1),
270 boost::cref(h2o),
271 _2)
272 );
273 MorseData(homologies.getHomologousGraphs(graph));
274 LOG(1, "INFO: I gathered the following training data: " << MorseData);
275 // NOTICE that distance are in bohrradi as they come from MPQC!
276
277 // now perform the function approximation by optimizing the model function
278 FunctionModel::parameters_t params(PairPotential_Morse::MAXPARAMS, 0.);
279 params[PairPotential_Morse::dissociation_energy] = 0.5;
280 params[PairPotential_Morse::energy_offset] = -1.;
281 params[PairPotential_Morse::spring_constant] = 1.;
282 params[PairPotential_Morse::equilibrium_distance] = 2.9;
283 PairPotential_Morse morse;
284 LOG(0, "INFO: Initial parameters are " << params << ".");
285 morse.setParameters(params);
286 FunctionModel &model = morse;
287 FunctionApproximation approximator(MorseData, model); // we only give CC distance, hence 1 input dim
288 if (model.isBoxConstraint() && approximator.checkParameterDerivatives())
289 approximator(FunctionApproximation::ParameterDerivative);
290 else {
291 ELOG(0, "We require parameter derivatives for a box constraint minimization.");
292 return 1;
293 }
294 params = model.getParameters();
295
296 LOG(0, "RESULT: Best parameters are " << params << ".");
297 }
298 }
299
300 /******************* SATURATION TRAINING *******************/
301 FunctionModel::parameters_t params(SaturationPotential::MAXPARAMS, 0.);
302 {
303 // then we ought to pick the right HomologyGraph ...
304 const HomologyGraph graph = getFirstGraphwithTimesSpecificElement(homologies,8,1);
305 if (graph != HomologyGraph()) {
306 LOG(1, "First representative graph containing one saturated carbon is " << graph << ".");
307
308 // Afterwards we go through all of this type and gather the distance and the energy value
309 Fragment::charges_t h2o;
310 h2o += 8,1,1;
311 TrainingData TersoffData(
312 boost::bind(&Extractors::gatherDistancesFromFragment,
313 boost::bind(&Fragment::getPositions, _1),
314 boost::bind(&Fragment::getCharges, _1),
315 boost::cref(h2o),
316 _2)
317 );
318// TrainingData::extractor_t(&Extractors::gatherAllDistances) // gather first carbon pair
319// );
320 TersoffData( homologies.getHomologousGraphs(graph) );
321 LOG(1, "INFO: I gathered the following training data: " << TersoffData);
322 // NOTICE that distance are in bohrradi as they come from MPQC!
323
324 // now perform the function approximation by optimizing the model function
325 boost::function< std::vector<FunctionModel::arguments_t>(const argument_t &, const double)> triplefunction =
326 boost::bind(&getTripleFromArgument, boost::cref(TersoffData.getTrainingInputs()), _1, _2);
327 srand((unsigned)time(0)); // seed with current time
328 params[SaturationPotential::all_energy_offset] =
329 TersoffData.getTrainingOutputAverage()[0]; //1e+1*rand()/(double)RAND_MAX;//3.487900e+00;
330 params[SaturationPotential::morse_spring_constant] = 1e+1*rand()/(double)RAND_MAX;//1.393600e+03;
331 params[SaturationPotential::morse_equilibrium_distance] = 1e+1*rand()/(double)RAND_MAX;//3.467000e+02;
332 params[SaturationPotential::morse_dissociation_energy] = 1e+1*rand()/(double)RAND_MAX;//3.487900e+00;
333 params[SaturationPotential::angle_spring_constant] = 1e+1*rand()/(double)RAND_MAX;//3.487900e+00;
334 params[SaturationPotential::angle_equilibrium_distance] = 2e+0*rand()/(double)RAND_MAX - 1.;//3.487900e+00;
335 LOG(0, "INFO: Initial parameters are " << params << ".");
336
337 SaturationPotential saturation(2.5, triplefunction);
338 saturation.setParameters(params);
339 FunctionModel &model = saturation;
340 FunctionApproximation approximator(TersoffData, model); // CH4 has 5 atoms, hence 5*4/2 distances
341 if (model.isBoxConstraint() && approximator.checkParameterDerivatives())
342 approximator(FunctionApproximation::ParameterDerivative);
343 else {
344 ELOG(0, "We require parameter derivatives for a box constraint minimization.");
345 return 1;
346 }
347
348 params = model.getParameters();
349 LOG(0, "RESULT: Best parameters are " << params << ".");
350
351 // std::cout << "\tsaturationparticle:";
352 // std::cout << "\tparticle_type=C,";
353 // std::cout << "\tA=" << params[SaturationPotential::A] << ",";
354 // std::cout << "\tB=" << params[SaturationPotential::B] << ",";
355 // std::cout << "\tlambda=" << params[SaturationPotential::lambda] << ",";
356 // std::cout << "\tmu=" << params[SaturationPotential::mu] << ",";
357 // std::cout << "\tbeta=" << params[SaturationPotential::beta] << ",";
358 // std::cout << "\tn=" << params[SaturationPotential::n] << ",";
359 // std::cout << "\tc=" << params[SaturationPotential::c] << ",";
360 // std::cout << "\td=" << params[SaturationPotential::d] << ",";
361 // std::cout << "\th=" << params[SaturationPotential::h] << ",";
362 //// std::cout << "\toffset=" << params[SaturationPotential::offset] << ",";
363 // std::cout << "\tR=" << saturation.R << ",";
364 // std::cout << "\tS=" << saturation.S << ";";
365 // std::cout << std::endl;
366
367 // check L2 and Lmax error against training set
368 LOG(1, "INFO: L2sum = " << TersoffData.getL2Error(model)
369 << ", LMax = " << TersoffData.getLMaxError(model) << ".");
370 }
371
372 }
373
374 return 0;
375}
Note: See TracBrowser for help on using the repository browser.