This repository was archived by the owner on Oct 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 1+ v0.2
2+ ====
3+
4+ - enhanced userguide with fully tested python examples
5+ - using double floating point precision by default
6+ - allowed external setting of inter and intra ops thread number for
7+ parallelizaton
8+ - distributable tarball is working (make dist), target distcheck not yet
9+ - added measuring of execution times (init, train, overall)
10+ - FIX: batch_size went missing
11+ - FIX: Dataset was not shuffled properly and split into test/train inconsistent
12+ - added loss manifold sampler
13+ - added Python interface
14+ - added userguide
15+ - added saving and restoring of neural network model to and from file.
16+ - added trajectory analyser for average parameters and diffusion map analysis
17+ based on the contributed code by Zofia Trstanova
18+ - added sampling of average kinetic energy and configurational temperature,
19+ accurate by accumulating in every step (not just "every_nth" step)
20+ - added autotools testsuite
21+ - added SGLD, Geometric Langevin Algorithm 1st and 2nd order sampling
22+
23+
124v0.1
225====
326
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ if test ! -e ChangeLog; then
88else
99 if git log --pretty=format:' %h - %an: %s' > ChangeLog.t \
1010 && diff ChangeLog.t ChangeLog > /dev/null 2>&1 ; then
11- mv -f ChangeLog.t ChangeLog
12- else
1311 rm -f ChangeLog.t
12+ else
13+ mv -f ChangeLog.t ChangeLog
1414 fi
1515fi
1616
Original file line number Diff line number Diff line change 11dnl Process this file with autoconf to produce a configure script.
22
33AC_PREREQ ( 2.59 )
4- AC_INIT ( DataDrivenSampler ,
0.1 ,
[email protected] ) 4+ AC_INIT ( DataDrivenSampler ,
0.2 ,
[email protected] ) 55AC_CONFIG_AUX_DIR ( [ build-aux] )
66AC_CONFIG_SRCDIR ( [ src/DataDrivenSampler/common.py] )
77AC_CONFIG_MACRO_DIR ( [ m4] )
You can’t perform that action at this time.
0 commit comments