Project

crfpp

0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby extension to interface with CRF++, the Conditional Random Fields library written in C++. You need to install libcrfpp to use this gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.9
~> 4.6
 Project Readme

CRFPP

CRFPP is a Ruby API for the CRF++ library for Conditional Random Fields.

Installation

You will need to install CRF++ prior to installing the CRFPP gem; simply download the sources, unpack them, and then execute the following commands:

$ cd CRF++-0.54
$ make
$ [sudo] make install
$ [sudo] gem install crfpp

If you are using a Debian-based system, you may want to try the Ubuntu packages from Ubunutu NLP Repository:

$ sudo apt-get install libcrf++
$ [sudo] gem install crfpp

Alternatively, if you are using homebrew on OS X you may prefer to:

$ brew install crf++
$ gem install crfpp

NB: if you installed CRF++ yourself make sure to not install (or not to load) the Ruby extensions that are packaged with the sources as they may interfere with the crfpp gem.

Credits

Copyright 2011 Sylvester Keil. All rights reserved.

CRFPP is published under a BSD License; see the LICENSE file for details.