forked from HIT-SCIR/ltp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.h
61 lines (49 loc) · 1.28 KB
/
model.h
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef __LTP_POSTAGGER_MODEL_H__
#define __LTP_POSTAGGER_MODEL_H__
#include "featurespace.h"
#include "parameter.h"
#include "smartmap.hpp"
namespace ltp {
namespace postagger {
using namespace ltp::utility;
class Model {
public:
Model();
~Model();
/*
* get number of labels;
*
* @return int the number of labels
*/
inline int num_labels(void) {
return labels.size();
}
/*
* save the model to a output stream
*
* @param[out] ofs the output stream
*/
void save(std::ostream & ofs);
/*
* load the model from an input stream
*
* @param[in] ifs the input stream
*/
bool load(std::istream & ifs);
public:
IndexableSmartMap labels;
FeatureSpace space;
Parameters param;
private:
void write_uint(std::ostream & out, unsigned int val) {
out.write(reinterpret_cast<const char *>(&val), sizeof(unsigned int));
}
unsigned int read_uint(std::istream & in) {
char p[4];
in.read(reinterpret_cast<char*>(p), sizeof(unsigned int));
return *reinterpret_cast<const unsigned int*>(p);
}
};
} // end for namespace postagger
} // end for namespace ltp
#endif // end for __LTP_POSTAGGER_MODEL_H__