Algorithm-CRF
view release on metacpan or search on metacpan
C,
thread_num,
shrinking_size,
algorithm )) {
// cerr << encoder.what() << endl;
fprintf (stderr,"%s\n",encoder.what());
RETVAL = -1;
} else
RETVAL = 0;
}
OUTPUT:
RETVAL
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#define COPYRIGHT "CRF++: Yet Another CRF Tool Kit\nCopyright(C)" \
"2005-2007 Taku Kudo, All rights reserved.\n"
#define MODEL_VERSION 100
#if defined(_WIN32) && !defined(__CYGWIN__)
# define OUTPUT_MODE std::ios::binary|std::ios::out
#else
# define OUTPUT_MODE std::ios::out
#endif
#define BUF_SIZE 8192
namespace CRFPP {
template <class T> inline T _min(T x, T y) { return(x < y) ? x : y; }
template <class T> inline T _max(T x, T y) { return(x > y) ? x : y; }
template <class Iterator>
inline size_t tokenizeCSV(char *str,
( run in 0.343 second using v1.01-cache-2.11-cpan-4e96b696675 )