KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
spear_train.h
Go to the documentation of this file.
1 #ifndef SPEAR_TRAIN_H_
2 #define SPEAR_TRAIN_H_
3 
11 #include <iostream>
12 #include <fstream>
13 
14 #include "spear/Trainer.h"
15 #include "spear/Wide.h"
16 
17 namespace spear
18 {
19  void print_filename(const std::string& s, std::ostream& os);
20  void train_collins(
21  const std::string& input_filename,
22  const std::string& output_dir,
23  const int& lf_thresh = 0,
24  std::ostream& os = std::cerr
25  );
26 };
27 
28 #endif
void print_filename(const std::string &s, std::ostream &os)
Definition: spear_train.cpp:11
void train_collins(const std::string &input_filename, const std::string &output_dir, const int &lf_thresh, std::ostream &os)
Definition: spear_train.cpp:25