Skip to content

Commit b60b61f

Browse files
committed
add reference_border_num option
1 parent 893b9f4 commit b60b61f

File tree

8 files changed

+399
-277
lines changed

8 files changed

+399
-277
lines changed

Diff for: border.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class Border(object):
2+
def __init__(self, before, after, score, cand):
3+
"""
4+
5+
:param int before:
6+
:param int after:
7+
:param float score:
8+
:param bool cand:
9+
"""
10+
self.before = before
11+
self.after = after
12+
self.score = score
13+
self.cand = cand

0 commit comments

Comments
 (0)