-
Notifications
You must be signed in to change notification settings - Fork 168
/
ChangeLog
132 lines (100 loc) · 5.48 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
2021-12-03 Le Zhang <[email protected]>
* Updated repo to use cmake to build.
2015-07-09 Le Zhang <[email protected]>
* this file will no longer be maintained since the project was moved to github.
Please use 'git log' command to view the commit history instead.
2012-02-09 Le Zhang <[email protected]>
* Fixed: compile warnings on recent platforms. Also upgrade the included boost lib
to a newer version.
2011-09-02 Le Zhang <[email protected]>
* Fixed: compile warning in src/maxent.cpp
2011-05-16 Le Zhang <[email protected]>
* Fixed: incorporated patch provided by Jiří Marší: numerically stable
fix for probability overflow, which can lead to crash in LBFGS training.
2006-10-04 Le Zhang <[email protected]>
* Fixed: autoconf problem when using gcc4.0 with g77 replaced by gfortran
2005-03-22 Le Zhang <[email protected]>
* Added: docstring support to python binding
2004-12-25 Le Zhang <[email protected]>
* Ported to Sun Solaris platform
* Ported to gcc 3.4.3
* Python swig binding ported to win32
2004-12-24 Le Zhang <[email protected]>
* Added: unittest test for orange binding, setup.py for orngMaxent.py
* Change the meaning of -g from sigma to sigma^2
* Dox fix: about -g gaussian option, swig python installation, python::eval_all()
2004-11-17 Le Zhang <[email protected]>
* Added: C interface wrapper code for lbfgs.f, with a driver sdriver.c
* Added: replace the heavy boost test unit with light weight minunit in
test/
2004-10-06 Le Zhang <[email protected]>
* Fixed: An overflow caused by zero feature value in gis estimation code,
which can cause "nan" appear in the model file.
* Added: SWIG python binding now fully functions under Linux. Will replace
Boost.Python in furture releases.
2004-09-30 Le Zhang <[email protected]>
* Doc fix for a maintenance release.
2004-07-08 Le Zhang <[email protected]>
* Added: Detail instructions on buliding on win32 were added in the
document.
* Added: Install headers in src/Jamfile
2004-07-06 Le Zhang <[email protected]>
* Fixed: wrongly display time measure on win32 platform in gistrainer.cpp
and lbfgstrainer.cpp
* Added: a timer for loading events data in MaxentModel
2004-07-04 Le Zhang <[email protected]>
* Remove the use of boost::format lib, which is pretty heavy for this
application and can cause trouble on some C++ compilers.
* Use own getopt implementation on Win32 platforms, which fixes file name
bugs of command line program.
2004-07-03 Le Zhang <[email protected]>
* Fixed: use fabs instead of abs, a crucial bug in gistrainer.cpp
2004-07-01 Le Zhang <[email protected]>
* Ported to MSVC 7.1 with or without stlport
* Ported to Intel C++ 8.0 with MSVC 7.1's lib & headers
* Fixed: win32 getopt limitation by using own getopt.c on win32 platform
2004-06-25 Le Zhang <[email protected]>
* Automatically disable lbfgs routine on system without fortran compiler
2004-06-09 Le Zhang <[email protected]>
* Fixed: GIS now supports non-binary features
2004-05-29 Le Zhang <[email protected]>
* rewrite mmap supporting routines.
* now the toolkit can be cross-compiled into native win32 executable using
cross-mingw toolchain (gcc 3.2) on FreeBSD.
2004-05-28 Le Zhang <[email protected]>
* initial port to autoconf/jam building system, SCons is abandoned.
2004-04-27 Le Zhang <[email protected]>
* Fixed: a potential bug when reading non-binary feature value using
mmap() call in maxent.cpp::get_sample(). The old code tries to
call atof() with two more bytes beyond the feature value string.
This works most time, but can cause a bus error.
2004-04-11 Le Zhang <[email protected]>
* detect gnugetopt lib with a CheckLib call in src/SConscript
2004-03-13 Le Zhang <[email protected]>
* Revised user manual
2004-03-12 Le Zhang <[email protected]>
* Fixed: re-arrange python binding and tagger code to python/ dir.
* Added: maxent can now use heldout data (--heldout)
* Added: maxent can now do prediction over test data directly after model
training: maxent [options] train.data test.data
2004-02-29 Le Zhang <[email protected]>
* Fixed: possible damage to training data when calling msync() in
mmapfile.cpp
2004-02-28 Le Zhang <[email protected]>
* Fixed: E_ref parameter of gistrainer's newton() method when using
Gaussian smoothing. Reported by Tom Morton
* Changed: license is changed to LGPL
2004-02-25 Le Zhang <[email protected]>
* Use numeric_limits<double>::epsilon() instead of hardcoded eps
2003-10-06 Le Zhang <[email protected]>
* Update document and add ChangeLog, THANKS
* Added: test for mmap() in src/SConscript
* Added: add_heldout_event() now works
2003-10-05 Le Zhang <[email protected]>
* Added: fast mmap() file I/O, much faster than standard iostream
* Added: line_mem_iterator.hpp and token_mem_iterator.hpp
2003-10-04 Le Zhang <[email protected]>
* Added: new build_params() suggested by Carmen Alvarez
2003-09-27 Le Zhang <[email protected]>
* Added: non-binary feature is now fullly supported
* Added: test suites for pymaxent and mmapfile