CRF++在Windows下以及Linux下的安裝及測試方法
Windows與Linux下CRF++有兩種不同的版本,很多時候官網無法下載,你如果需要下載CRF++,你可以點選這裡下載這兩個版本。
Windows
首先說一下Windows的安裝方法(其實無需安裝),以及簡單的使用方法。
1、解壓,進入crf++-0.58,你可以看到
2、你需要把紅色方框內的檔案複製到example\chunking資料夾下。
3、開啟cmd,找到剛剛的example\chunking這個資料夾。
4、
crf_learn template_file train_file model_file
比如:
crf_learn template train.data model
就可以看到
你可以看到控制檯上列印處的資訊,並會產生一個新的檔案:model。這個訓練過程的時間、迭代次數等資訊就會輸出到控制檯上,如果想要儲存這些資訊,我們可以將這些標準輸出流到檔案,命令格式為:
crf_learn template_file train_file model_file >> train_info_file
比如:
crf_learn template train.data model >> model_out.txt
Linux下的安裝方法:
同樣你可以點選這裡下載,然後可按照如下步驟安裝。
1、
(1)、tar zxvf CRF++-0.58.tar.gz
(2)、cd CRF++-0.58
(3)、./configure
(4)、make
(5)、su
(6)、make install
2、cd python,然後:
(1)、python setup.py build
(2)、python setup.py install
3、輸入python,進入python直譯器
4、
import CRFPP
注:這裡可能會報錯,我遇到的是:
報錯的是:
ImportError: libcrfpp.so.0: cannot open shared object file: No such file or directory 。
你可以輸入:
ln -s /usr/local/lib/libcrfpp.so.0 /usr/lib/
然後重複3、4兩個步驟即可。
相關文章
- Zookeeper 在Windows下的安裝過程及測試Windows
- solr在windows下的安裝及配置SolrWindows
- Mongodb在Windows下安裝及配置MongoDBWindows
- Windows下的Memcache安裝與測試教程Windows
- Charles在windows下的安裝以及踩過的坑Windows
- windows下openldap的安裝與java操作測試WindowsLDAJava
- Linux和Windows下網路測試工具的安裝使用(iperf)LinuxWindows
- Windows下的Memcache安裝 linux下的Memcache安裝WindowsLinux
- linux下expect環境安裝以及簡單指令碼測試Linux指令碼
- Vagrant在Windows下安裝及注意事項Windows
- Elasticsearch在Windows下的安裝ElasticsearchWindows
- Subversion在windows下的安裝Windows
- LDAP:如何在windows系統下安裝LDAP及連線測試LDAWindows
- 在 windows下安裝rabbitmqWindowsMQ
- windows下mangodb的安裝及配置WindowsGo
- 在SATA模式下安裝windows xp的方法(非GHOST)模式Windows
- php5-fpm以及fcgiwrap在ubuntu下的安裝方法PHPUbuntu
- mysql-5.7.xx在lcentos7下的安裝以及mysql在windows以及linux上的效能差異MySqlCentOSWindowsLinux
- Zend Framework在windows下的安裝FrameworkWindows
- PyGTK在Windows下的安裝(轉)Windows
- windows下安裝cygwin及配置Windows
- coreseek實戰(一):windows下coreseek的安裝與測試Windows
- Windows下安裝Redis及使用Python操作Redis的方法WindowsRedisPython
- 在Windows xp下安裝PyQtWindowsQT
- windows下nvm、nrm的安裝及使用Windows
- windows下mongodb的安裝及啟動WindowsMongoDB
- 賜教在windows下安裝linux的問題(轉)WindowsLinux
- 在Linux下安裝Oracle 10g的方法LinuxOracle 10g
- Resin在Windows系統下的安裝Windows
- Nginx在Linux下的安裝NginxLinux
- mysql在linux下的安裝MySqlLinux
- 在windows7下安裝CentOSWindowsCentOS
- 在Linux下安裝JDKLinuxJDK
- 在linux下安裝mysqlLinuxMySql
- Windows環境下安裝LinuxWindowsLinux
- Java及JDK在deepin下的安裝JavaJDK
- redis 簡介及windows 下的redis 安裝RedisWindows
- LINUX下JBOSS的安裝及配置Linux