haven-jeon / PyKoSpacing

Automatic Korean word spacing with Python
GNU General Public License v3.0
403 stars 118 forks source link

Fix : Hide warning messages when using pykospacing #37

Closed jungsiroo closed 2 years ago

jungsiroo commented 2 years ago

Issue

pykospacing 을 쓰면 warning messages 가 너무 많이 나와 가독성이 떨어지는 이슈가 있었습니다.

Solution

os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'os 를 import 하자마자 설정해주어야 제대로 작동하는 것을 확인했습니다!

Changes

변경 전

image

변경 후

image

haven-jeon commented 2 years ago

감사합니다.