import spacy nlp = spacy.load('en_core_web_sm')# 載入預訓練模型txt = "some text read from one paper ..." doc = nlp(txt) for sent in ...
確定! 回上一頁