반응형
이 작업을 수행하는 더 효율적인 방법이 있습니까? 내 코드는 텍스트 파일을 읽고 모든 명사를 추출합니다.
import nltk
File = open(fileName) #open file
lines = File.read() #read all lines
sentences = nltk.sent_tokenize(lines) #tokenize sentences
nouns = [] #empty to array to hold all nouns
for sentence in sentences:
for word,pos in nltk.pos_tag(nltk.word_tokenize(str(sentence))):
if (pos == 'NN' or pos == 'NNP' or pos == 'NNS' or pos == 'NNPS'):
nouns.append(word)
이 코드의 시간 복잡성을 줄이려면 어떻게해야합니까? 중첩 된 for 루프를 사용하지 않는 방법이 있습니까?
미리 감사합니다!
해결 방법
>>> from textblob import TextBlob
>>> txt = """Natural language processing (NLP) is a field of computer science, artificial intelligence, and computational linguistics concerned with the inter
actions between computers and human (natural) languages."""
>>> blob = TextBlob(txt)
>>> print(blob.noun_phrases)
[u'natural language processing', 'nlp', u'computer science', u'artificial intelligence', u'computational linguistics']
참조 페이지 https://stackoverflow.com/questions/33587667
반응형
'파이썬' 카테고리의 다른 글
파이썬 Django에서 현재 언어를 얻으려면 어떻게해야합니까? (0) | 2020.11.13 |
---|---|
파이썬 최대 2 개의 숫자를 찾으려면 어떻게합니까? (0) | 2020.11.13 |
파이썬 In TensorFlow, what is the difference between Session.run() and Tensor.eval()? (0) | 2020.11.13 |
파이썬 Tensorflow 설치 오류 :이 플랫폼에서 지원되는 휠이 아닙니다. (0) | 2020.11.13 |
파이썬 이메일 첨부 파일을 보내는 방법은 무엇입니까? (0) | 2020.11.13 |
댓글