naoya_t@hatenablog

いわゆるチラシノウラであります

TinySVM-0.09をMacOSXでビルドする時のメモ

TinySVM is an implementation of Support Vector Machines (SVMs) [Vapnik 95], [Vapnik 98] for the problem of pattern recognition. Support Vector Machines is a new generation learning algorithms based on recent advances in statistical learning theory, and applied to large number of real-world applications, such as text categorization, hand-written character recognition.

TinySVM:Support Vector Machines

http://chasen.org/~taku/software/TinySVM/ にあるソース (TinySVM-0.09.tar.gz) そのままではビルドに失敗する。ここにあった情報と、src/Makefileを書き換えるのとをまとめてパッチ化して

に置いたので、./configure の後に適用されたし

$ tar zxf TinySVM-0.09.tar.gz
$ cd TinySVM-0.09
$ patch -p1 < TinySVM-0.09.naoyat-macosx.patch
$ ./configure
$ make
$ make check
$ sudo make install