Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CjangCjengh committed Sep 2, 2022
1 parent 0a58d33 commit 90fe415
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion text/cleaners.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
the symbols in symbols.py to match your data).
'''

import re
import os, sys, re
from unidecode import unidecode
import pyopenjtalk
from jamo import h2j, j2hcj
Expand All @@ -21,6 +21,8 @@
import logging

logging.getLogger('jieba').setLevel(logging.WARNING)
jieba.set_dictionary(os.path.dirname(sys.argv[0])+'/jieba/dict.txt')
jieba.initialize()


# This is a list of Korean classifiers preceded by pure Korean numerals.
Expand Down

0 comments on commit 90fe415

Please sign in to comment.