summaryrefslogtreecommitdiff
path: root/nlp_tools/vocabulary.py
blob: ed200f536b071d8a3d0072f9a301e4b2c1b3ff9e (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
import cPickle

class Vocabulary:

  OOV_VAL = -1

  def __init__(self):
    self.str_to_tok = {}
    self.tok_to_str = {}

  def put(self, string):
    if string in self.str_to_tok:
      raise ValueError("%s is already in this vocabulary (token %d)" % \
          (string, self.str_to_tok[string]))
    return self.ensure(string)

  def ensure(self, string):
    if string in self.str_to_tok:
      return
    tok = len(self)
    self.str_to_tok[string] = tok
    self.tok_to_str[tok] = string
    return tok

  def gett(self, string):
    if string not in self.str_to_tok:
      return self.OOV_VAL
    return self.str_to_tok[string]

  def gets(self, tok):
    return self.tok_to_str[tok]

  def strs(self):
    return self.str_to_tok.keys()

  def toks(self):
    return self.tok_to_str.keys()

  def __len__(self):
    return len(self.str_to_tok)

  def save(self, path):
    with open(path, 'w') as f:
      cPickle.dump(self, f)

  @classmethod
  def load(cls, path):
    with open(path) as f:
      return cPickle.load(f)