forked from shibing624/pycorrector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
executable file
·83 lines (65 loc) · 2.13 KB
/
test.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#===============================================================================
#
# Copyright (c) 2017 <> All Rights Reserved
#
#
# File: /Users/hain/tmp/test_ec.py
# Author: Hai Liang Wang
# Date: 2018-03-05:16:04:39
#
#===============================================================================
"""
"""
from __future__ import print_function
from __future__ import division
__copyright__ = "Copyright (c) 2017 . All Rights Reserved"
__author__ = "Hai Liang Wang"
__date__ = "2018-03-05:16:04:39"
import os
import sys
curdir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(curdir)
if sys.version_info[0] < 3:
reload(sys)
sys.setdefaultencoding("utf-8")
# raise "Must be using Python 3"
# Get ENV
ENVIRON = os.environ.copy()
from absl import flags #absl-py
from absl import logging #absl-py
FLAGS = flags.FLAGS
flags.DEFINE_string('echo', None, 'Text to echo.')
from corrector import correct
import unittest
# run testcase: python /Users/hain/tmp/test_ec.py Test.testExample
class Test(unittest.TestCase):
'''
'''
def setUp(self):
pass
def tearDown(self):
pass
# def test_convert_pkl(self):
# print("test_convert_pkl")
# import pickle
# for x in ["data/same_pinyin.pkl",
# "data/same_stroke.pkl",
# "data/train_input_counter.pkl"]:
# p = os.path.join(curdir, "corrector", x)
# with open(p, "rb") as fin, open("%s.pkl2" % p,"wb") as fout:
# w = pickle.load(fin)
# pickle.dump(w, fout, protocol=2)
def test_ec(self):
logging.info("test_")
line = '我们现今所使用的大部分舒学符号' # ,你们用的什么婊点符号
logging.info('input sentence is: %s', line)
corrected_sent, correct_ranges = correct(line)
logging.info('corrected_sent: %s', corrected_sent)
logging.info('correct_ranges: %s', correct_ranges)
def test():
unittest.main()
if __name__ == '__main__':
FLAGS([__file__, '--verbosity', '1']) # DEBUG 1; INFO 0; WARNING -1
test()