We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
안녕하세요..
책의 282 page 상단의 코드에
morph_tokenized_sentences = [okt.morphs(s.replace(' ', '')) for s in sentences]
위와 같이 형태소 분리가 되어 있습니다.
그런데, 저 코드의 경우 형태소 분리의 결과는
['3', '박', '4일', '정도놀러가고싶다'] 가 됩니다.
코드에서 "s.replace(' ', '')" 과정 없이 형태소를 분리하면
['3', '박', '4일', '정도', '놀러', '가고', '싶다'] 가 됩니다.
그래서, 코드에서 "s.replace(' ', '')" 를 쓰신 이유가 무엇인지 궁금합니다...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
안녕하세요..
책의 282 page 상단의 코드에
morph_tokenized_sentences = [okt.morphs(s.replace(' ', '')) for s in sentences]
위와 같이 형태소 분리가 되어 있습니다.
그런데, 저 코드의 경우 형태소 분리의 결과는
['3', '박', '4일', '정도놀러가고싶다'] 가 됩니다.
코드에서 "s.replace(' ', '')" 과정 없이 형태소를 분리하면
['3', '박', '4일', '정도', '놀러', '가고', '싶다'] 가 됩니다.
그래서, 코드에서 "s.replace(' ', '')" 를 쓰신 이유가 무엇인지 궁금합니다...
The text was updated successfully, but these errors were encountered: