You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
안녕하세요 본 모델을 통해 자연어처리 해보려고 있습니다ㅎㅎ
일단 좋은 모델 제공해주셔서 너무 감사드립니다
다름이 아니라 kcELECTRA 파인튠 colab코드를 우분투 환경에서 ipython으로 똑같이 따라해보는데
def clean(self, x):
emojis = ''.join(emoji.UNICODE_EMOJI.keys())
pattern = re.compile(f'[^ .,?!/@$%~%·∼()\x00-\x7Fㄱ-힣{emojis}]+')
url_pattern = re.compile(
r'https?://(www.)?[-a-zA-Z0-9@:%.+~#=]{1,256}.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%+.~#?&//=]*)')
x = pattern.sub(' ', x)
x = url_pattern.sub('', x)
x = x.strip()
x = repeat_normalize(x, num_repeats=2)
return x
여기 부분을 입력하면 UnicodeEncodeError: 'utf-8' codec can't encode characters 이런식으로 오류가 나면서 ipython이 꺼지더군요ㅠ
python 3.6.9버전이 컴파일러인데 혹시 관련 이슈에 대해 팁 주실만한게 있으실까요?ㅠ
The text was updated successfully, but these errors were encountered:
혹시 해결되셨나요? 만약 해결이 안되셨다면 생각나는 방법이 있습니다.
emoji 버젼이 1.5 이상이 되면
emoji.UNICODE_EMOJI.keys()
이 라인이 문제를 일으킵니다. emoji 모듈을 1.5 버전으로 다운그레이드를 하시거나 다른 방법을 찾는게 맞을겁니다.
안녕하세요 본 모델을 통해 자연어처리 해보려고 있습니다ㅎㅎ
일단 좋은 모델 제공해주셔서 너무 감사드립니다
다름이 아니라 kcELECTRA 파인튠 colab코드를 우분투 환경에서 ipython으로 똑같이 따라해보는데
def clean(self, x):
emojis = ''.join(emoji.UNICODE_EMOJI.keys())
pattern = re.compile(f'[^ .,?!/@$%~%·∼()\x00-\x7Fㄱ-힣{emojis}]+')
url_pattern = re.compile(
r'https?://(www.)?[-a-zA-Z0-9@:%.+~#=]{1,256}.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%+.~#?&//=]*)')
x = pattern.sub(' ', x)
x = url_pattern.sub('', x)
x = x.strip()
x = repeat_normalize(x, num_repeats=2)
return x
여기 부분을 입력하면 UnicodeEncodeError: 'utf-8' codec can't encode characters 이런식으로 오류가 나면서 ipython이 꺼지더군요ㅠ
python 3.6.9버전이 컴파일러인데 혹시 관련 이슈에 대해 팁 주실만한게 있으실까요?ㅠ
The text was updated successfully, but these errors were encountered: