Note

Py-Hanspell 본문

Deep Learning/NLP

Py-Hanspell

알 수 없는 사용자 2022. 5. 15. 16:26
728x90
!pip install git+https://github.com/ssut/py-hanspell.git

from hanspell import spell_checker

sent = "맞춤법 틀리면 외 않되? 내마음대로쓰면돼지 "
spelled_sent = spell_checker.check(sent)

hanspell_sent = spelled_sent.checked
print(hanspell_sent)
맞춤법 틀리면 왜 안돼? 내 마음대로 쓰면 되지 # 출력 결과

네이버 한글 맞춤법 검사기를 토대로 만들어진 한국어 전처리 패키지

'Deep Learning > NLP' 카테고리의 다른 글

RNN을 이용한 텍스트 생성 2  (0) 2022.05.25
RNN을 이용한 텍스트 생성 1  (0) 2022.05.24
PyKoSpacing  (0) 2022.05.11
FastText (패스트텍스트)  (0) 2022.05.08
다층 퍼셉트론(MLP)을 사용하여 텍스트 분류  (0) 2022.05.07
Comments