Skip to content

Commit

Permalink
Merge pull request #190 from bab2min/dev/issue_189
Browse files Browse the repository at this point in the history
SN이나 W 태그가 잘못된 문자로 매칭되는 버그 수정
  • Loading branch information
bab2min authored Nov 20, 2024
2 parents 04cba8a + bfd0141 commit 5dcf4f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Kiwi
6 changes: 6 additions & 0 deletions test/test_kiwipiepy.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,12 @@ def test_space_issue_187():
assert kiwi.space('잡는게 아님') == '잡는 게 아님'
assert kiwi.space('때문일겁니다') == '때문일 겁니다'

def test_space_issue_189():
kiwi = Kiwi()
kiwi.add_user_word('팩', 'NNB')
assert kiwi.space('담아 1팩 무료') == '담아 1팩 무료'
assert kiwi.space('골라 2팩 무료') == '골라 2팩 무료'

def test_glue():
chunks = """KorQuAD 2.0은 총 100,000+ 쌍으로 구성된 한국어 질의응답 데이터셋이다. 기존 질의응답 표준 데이
터인 KorQuAD 1.0과의 차이점은 크게 세가지가 있는데 첫 번째는 주어지는 지문이 한두 문단이 아닌 위
Expand Down

0 comments on commit 5dcf4f0

Please sign in to comment.