lep1 commited on
Commit
d6657cb
1 Parent(s): a8e07b3

Update convert.py

Browse files
Files changed (1) hide show
  1. convert.py +1 -1
convert.py CHANGED
@@ -3,7 +3,7 @@ import numpy as np
3
  import torch
4
 
5
 
6
- def convert_to_braille_unicode(str_input: str, path: str = "./braille_map.json") -> str:
7
  with open(path, "r") as fl:
8
  data = json.load(fl)
9
 
 
3
  import torch
4
 
5
 
6
+ def convert_to_braille_unicode(str_input: str, path: str = "./number_map.json") -> str:
7
  with open(path, "r") as fl:
8
  data = json.load(fl)
9