Blame view

egs/rimes/v1/local/prepare_lexicon.py 1.06 KB
8dcb6dfcb   Yannick Estève   first commit
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
  #!/usr/bin/env python3
  
  # Copyright  2018  Ashish Arora
  
  import argparse
  import os
  
  parser = argparse.ArgumentParser(description="""Creates the list of characters and words in lexicon""")
  parser.add_argument('dir', type=str, help='output path')
  args = parser.parse_args()
  
  ### main ###
  lex = {}
  text_path = os.path.join('data', 'train', 'text')
  text_fh = open(text_path, 'r', encoding='utf-8')
  
  with open(text_path, 'r', encoding='utf-8') as f:
      for line in f:
          line_vect = line.strip().split(' ')
          for i in range(1, len(line_vect)):
              characters = list(line_vect[i])
              # Put SIL instead of "|". Because every "|" in the beginning of the words is for initial-space of that word
              characters = " ".join(['SIL' if char == '|' else char for char in characters])
              lex[line_vect[i]] = characters
              if line_vect[i] == '#':
                  lex[line_vect[i]] = "<HASH>"
  
  with open(os.path.join(args.dir, 'lexicon.txt'), 'w', encoding='utf-8') as fp:
      for key in sorted(lex):
          fp.write(key + " " + lex[key] + "
  ")