forked from HIT-SCIR/ltp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathotcws.cpp
33 lines (27 loc) · 800 Bytes
/
otcws.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
#include "cfgparser.hpp"
#include "logging.hpp"
#include "segmentor.h"
using namespace ltp::utility;
using namespace ltp::segmentor;
void usage(void) {
std::cerr << "otcws - Training and testing suite for Chinese Word segmentation" << std::endl;
std::cerr << "Copyright (C) 2012-2013 HIT-SCIR" << std::endl;
std::cerr << std::endl;
std::cerr << "usage: ./otcws <config_file>" << std::endl;
std::cerr << std::endl;
}
int main(int argc, const char * argv[]) {
if (argc < 2 || (argv[1][0] == '-' && argv[1][1] == 'h')) {
usage();
return -1;
}
ConfigParser cfg(argv[1]);
if (!cfg) {
ERROR_LOG("Failed to parse config file.");
return -1;
}
Segmentor segmentor(cfg);
segmentor.run();
return 0;
}