blob: dd7f0237a5274ba6fdba3d66b18ccbf5eec2cf85 (
plain)
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
|
#ifndef _TDICT_H_
#define _TDICT_H_
#include <string>
#include <vector>
#include "wordid.h"
#include <assert.h>
class Vocab;
struct TD {
/* // disabled for now
static const int reserved_begin=10; // allow room for SRI special tokens e.g. unk ss se pause. tokens until this get "<FILLERi>"
static const int n_reserved=10; // 0...n_reserved-1 get token '<RESERVEDi>'
static inline WordID reserved(int i) {
assert(i>=0 && i<n_reserved);
return (WordID)(reserved_begin+i);
}
static inline WordID begin() {
return reserved(n_reserved);
}
*/
static const WordID max_wordid=0x7fffffff;
static const WordID null=max_wordid-1;
static const WordID none=(WordID)-1; // Vocab_None - this will collide with mixed node/variable id / word space, though. max_wordid will be distinct (still positive)
static char const* const ss_str; //="<s>";
static char const* const se_str; //="</s>";
static char const* const unk_str; //="<unk>";
static WordID ss,se,unk; // x=Convert(x_str)
static WordID end(); // next id to be assigned; [begin,end) give the non-reserved tokens seen so far
static Vocab dict_;
static void ConvertSentence(std::string const& sent, std::vector<WordID>* ids);
static void GetWordIDs(const std::vector<std::string>& strings, std::vector<WordID>* ids);
static std::string GetString(const std::vector<WordID>& str);
static std::string GetString(WordID const* i,WordID const* e);
static int AppendString(const WordID& w, int pos, int bufsize, char* buffer);
static unsigned int NumWords();
static WordID Convert(const std::string& s);
static WordID Convert(char const* s);
static const char* Convert(WordID w);
};
struct ToTD {
typedef WordID result_type;
result_type operator()(std::string const& t) const {
return TD::Convert(t);
}
};
#endif
|