blob: e574a5362280d2763152d116cba002d359deac80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef TRAINING_CONST_REORDER_TRAINER_H_
#define TRAINING_CONST_REORDER_TRAINER_H_
#include "decoder/ff_const_reorder_common.h"
struct Tsuruoka_Maxent_Trainer : const_reorder::Tsuruoka_Maxent {
Tsuruoka_Maxent_Trainer();
void fnTrain(const char* pszInstanceFName, const char* pszAlgorithm,
const char* pszModelFName);
};
#endif // TRAINING_CONST_REORDER_TRAINER_H_
|