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
|
#pragma once
#include <util/generic/fwd.h>
#include <util/system/defaults.h>
enum NLP_TYPE {
NLP_END,
NLP_WORD,
NLP_INTEGER,
NLP_FLOAT,
NLP_MARK,
NLP_SENTBREAK,
NLP_PARABREAK,
NLP_MISCTEXT, // miscellaneous text: spaces, punctuation etc.
};
const TString& ToString(NLP_TYPE);
bool FromString(const TString& name, NLP_TYPE& ret);
NLP_TYPE GuessTypeByWord(const char* w, unsigned len);
NLP_TYPE GuessTypeByWord(const wchar16* w, unsigned len);
enum ESpaceType {
ST_NOBRK = 0,
ST_SENTBRK = 1,
ST_PARABRK = 3, // parabrk is a sentbrk too
ST_ZONEOPN = 4,
ST_ZONECLS = 8
};
const TString& ToString(ESpaceType);
bool FromString(const TString& name, ESpaceType& ret);
inline ESpaceType GetSpaceType(NLP_TYPE type) {
if (type == NLP_PARABREAK)
return ST_PARABRK;
if (type == NLP_SENTBREAK)
return ST_SENTBRK;
return ST_NOBRK;
}
using TBreakType = ui32;
inline bool IsSentBrk(TBreakType brk) {
return brk & ST_SENTBRK;
}
inline bool IsParaBrk(TBreakType brk) {
return brk & 2;
}
inline bool IsZoneOpn(TBreakType brk) {
return brk & ST_ZONEOPN;
}
inline bool IsZoneCls(TBreakType brk) {
return brk & ST_ZONECLS;
}
class TTokenStructure;
NLP_TYPE DetectNLPType(const TTokenStructure& subtokens);
|