Maximum Entropy Modeling Toolkit for Python and C

来源:百度文库 编辑:神马文学网 时间:2024/04/27 14:09:58
Maximum Entropy Modeling Toolkit for Python and C++
Introduction |License |Download |Document |FAQ(new) |History |ContactNews
20060810
Haven‘t touched the code for such a long time that I need to read the manual to see how to use it. Well, I put a self-explain note about Maximum Entropyhere if you think this is an update. 20060129
Upgrade python binary package to Python 2.4. version 20040930
Maintenance update. Some users encountered troubles in building the toolkit (and the python extension) under Debian Linux. This version fixes all those frustrations, plus a new installablepython extension for Win32!. version 20040709
In response to popular request this version can now be compiled with Microsoft Visual C++ 7.1, along with several otherwin32 compilers. The building system has switched to Autoconf/Jam, a faster solution to the SCons used before. This version also fixes several serious bugs so all users are recommended to upgrade. version 20040315
bug fixed version, the license is now changed toLGPL. version 20031006
real feature supported, compressed binary model and faster IO.
The Maximum Entropy Toolkit provides a set of tools and library for constructing maximum entropy (maxent) model in eitherPython or C++.
Maxent Entropy Model is a general purpose machine learning framework that has proved to be highly expressive and powerful in statistical natural language processing, statistical physics, computer vision and many other fields. Please see mymaxent page for more information on maxent. right place.
If you do not like this Toolkit, you can still try several otherME implementations.
Features
Current version has the following highlights: Conditional Maximum Entropy Model L-BFGS Parameter Estimation GIS Parameter Estimation Gaussian Prior Smoothing C++ API Python Extension module written in C++ Command line utility: maxent Documentation and Tutorial ;-)
 
The toolkit is written in ISO C++ with speed and portability in mind. It has been tested under the following OS/Compilers: GNU/Linux (kernel 2.4.x) with GCC 3.2/3.3 FreeBSD 4.8/4.9 with GCC 3.2 FreeBSD 4.8/4.9 with MinGW Cross Compiler (aka. cross-mingw) NetBSD 1.6.2 with GCC 3.2 SunOS 5.9 with GCC 3.4.3 Win32/Cygwin with GCC 3.2 Win32/MinGW with GCC 3.2 Win32/Borland Free C++ Compiler 5.5 withSTLPort 4.5.3 Win32/Microsoft Visual C++ 7.1 Win32/Microsoft Visual C++ 7.1 withSTLPort 5.0-beta Win32/Intel C++ 8.0 with MSVC7.1‘s runtime lib
This software is freeware and is released under LGPL license. Please consult the LICENSE file in source package for more information.
The adoption of LGPL is in accord with the license of java maxent project:http://maxent.sourceforge.net, from which the toolkit was derived. LGPL makes it easier to share source code, as well as new ideas, between both projects.
Here‘s a list of files you can download. Please note:
Binaries for FreeBSD and NetBSD are removed to save web space. Since both OSs can run Linux binary without any difficulity (through Linux binary compatibility mode), users on these platforms are advised to use linux binary (see below) or build from source package). Binary files may be a little out of date (but they work fine) You still need to get document from the source tar ball, even if you only download the binary.
File Name Description
Source Code
maxent-20041229.tar.gz The source code of the latest version plus document
Various Binaries
maxent-20041229-linux-static.tar.gz Statically linked binary for Linux
maxent-20041229-mingw32-static.zip Statically linked win32 binary cross compiled from a Linux box
maxent-20041229.win32-py2.4.exe
Other Files
jam.exe Win32 Jam binary, you need this in order to build the software on win32 with compilers other than GCC
tagger.tar.gz (Optional) The example POS tagging model that was trained on WSJ 00-18 sections is now downloaded separately (see document for more information)
 
Here is thePDF manual. Alternatively, you can generate HTML reference document by running "doxygen" in the doc/ directory if you have Doxygen installed.
I got a runtime-error while running the L-BFGS trainer. The error is:
IFLAG= -1 LINE SEARCH FAILED. SEE DOCUMENTATION OF ROUTINE MCSRCH ERROR RETURN OF LINE SEARCH: INFO= 3 POSSIBLE CAUSES: FUNCTION OR GRADIENT ARE INCORRECT OR INCORRECT TOLERANCES std::runtime_error caught:lbfgs routine stops with an error
This is a rare event and most users do not encounter this problem. However, when this does happen it is usually an indication of "over-training", which can be caused by either using a very small dataset, or trying to perform too many training iterations on a large dataset. The ad-hoc solution is to use a larger dataset, or simply use fewer training iterations. Future releases will probably turn this bug into a useful feature:-)
Missing limits.hpp when compiling the source code?
You will get this error if you try to compile the source code with an old version of gcc (gcc 2.9x). This can be fixed by using gcc 3.x instead. If your new gcc binaries are named gcc32 and g++32. You can run the following command to get the building system configured properly: CC=gcc32 CXX=g++32 ./configure
 
Can you explain the format of the model file? I want to use it in my own application.
There is no document on the model file format at this time. Since it is likely to be changed in future releases. You are encouraged to look at src/modelfile.cpp, if you are really curious.
 
Back to the year 2002, as I got more knowledge on maxent I decided to do some experiments to assess the usefulness of the framework. Unfortunately, unlike other popular machine learning techniques such as SVMs, which have many off-the-shelf implementations on the net, only few maxent packages can be found from the internet. Partly because implementing a maxent model is a non-trival work, especially the iterative parameter estimating procedure.
After trying several maxent implementations, I found thejava maxent package is a high quality, easy use one. The software is part of theOpenNLP project and is written in Java. But I want a C++ or Python solution that can be integrated into my existing code. Then, I began rewriting the java code in C++. Hopefully, it is relatively easy to translate java code into C++ (but not vice versa) and by the end of 2002 I finished the first C++ version. The speed of C++ is impressive: optimized C++ code ourperforms java code by a wide margin.
In the spring of 2003, python binding was added, utilizingBoost.Python lib. Later I found Dr. Malouf‘spaper, which proposes to use Limited Memory BFGS Method to estimate ME model‘s parameters. His experiment showed L-BFGS was much faster than GIS and IIS. So, I added L-BFGS estimating code in May. 2003. Meanwhile, I swithed the project form autoconf/automake toSCons, a much better make replacement written in Python. Later, in April. 2003 I came across Curran and Clark‘spaper, which proves a correction-free version of GIS algorithm (originally pointed out by[Goodman, 2002]), elimiting the need of correction feature in GIS. I readily adopted the idea and greatly simplified the GIS code.
In September, 2003, documentation was added and the toolkit was put to public release.
Acknowledgment
The author owns his thanks to: developers ofmaxent.sf.net, the java implementation of Maxent with GIS training algorithm. Actually, this toolkit evolves from an early attempt to port java maxent to C++.Robert Malouf. Dr. Malouf kindly answered my questions on maxent and provides his excellent implementation on four maxent parameter estimation algorithms.Jorge Nocedal, for the excellent FortranL-BFGS implementation.
If you have any questions or comments regarding the use of the software, the application of MaxEnt technique, or simply want to have a (related) discussion with me, feel free to drop me a line:
The Author:Zhang Le< ejoy@users.sourceforge.net>
Wow, you read everything, cool!
Last Change :10-Aug-2006. Please send any question toZhang Le