crfsuite 安装文档

最近需要做些序列标注的问题,虽然很多人都用crf++,出于项目需要,我选择的是crfsuite,由于安装的人比较少,而且本身项目网站的安装说明不够明细或者有部分没有说清楚,写下这个文档,之后也补充一些实验以及结果。

</pre><p>环境:centos6.5 64位</p><p>1:需要安装:liblbfgs.git</p><p></p><pre name="code" class="plain">git clone https://github.com/chokkan/liblbfgs.git
然后依次执行下面的命令
cd liblbfgs
./autogen.sh
./configure
make && make install

2:安装crfsuite

git clone https://github.com/chokkan/crfsuite.git
cd crfsuite
./autogen.sh
./configure
make && make install

这里默认的安装路径是/usr/local/

3:安装python包

cd swig/python/
./prepare.sh
python setup.py build_ext --include-dir=/usr/local/include --library-dirs=/usr/local/lib -R /usr/local/lib
python setup.py install

至此安装完成,


错误:

1:src/train_lbfgs.c:51:19: error: lbfgs.h: No such file or directory

方案:没有安装liblbfgs

2:Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "crfsuite.py", line 25, in <module>
    _crfsuite = swig_import_helper()
  File "crfsuite.py", line 21, in swig_import_helper
    _mod = imp.load_module('_crfsuite', fp, pathname, description)
ImportError: libcrfsuite-0.12.so: cannot open shared object file: No such file or directory

在第三步的时候,建议加上安装路径




你可能感兴趣的:(crfsuite 安装文档)