Algorithm::CRF - Perl binding for CRF++


Algorithm-CRF documentation Contained in the Algorithm-CRF distribution.

Index


Code Index:

NAME

Top

Algorithm::CRF - Perl binding for CRF++

SYNOPSIS

Top

  use Algorithm::CRF;
  Algorithm::CRF::crfpp_learn( ... );

DESCRIPTION

Top

Stub documentation for Algorithm::CRF, created by h2xs. It looks like the author of the extension was negligent enough to leave the stub unedited.

FUNCTIONS

Top

new

crfpp_learn

EXPORT

None by default.

SEE ALSO

Top

AUTHOR

Top

Cheng-Lung Sung, <clsung@FreeBSD.org>

COPYRIGHT AND LICENSE

Top


Algorithm-CRF documentation Contained in the Algorithm-CRF distribution.
package Algorithm::CRF;

use 5.008008;
use strict;
use warnings;

require Exporter;

our @ISA = qw(Exporter);

# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.

# This allows declaration	use Algorithm::CRF ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
	
) ] );

our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );

our @EXPORT = qw(
	
);

our $VERSION = '0.04';

require XSLoader;
XSLoader::load('Algorithm::CRF', $VERSION);

sub new {
  my $package = shift;
  my $self = bless {
		    @_,
		   }, $package;
  return $self;
}

my @params = 
  qw(
	freq
	maxiter
	cost
	eta
	convert
	textmodel
	version
	help
    );



1;
__END__
# Below is stub documentation for your module. You'd better edit it!