だから、NLTK のタガーで複数の用語を組み合わせて単一の用語を作成する方法を誰かが知っているかどうか疑問に思っていました。.
たとえば、私がするとき:
nltk.pos_tag(nltk.word_tokenize('Apple Incorporated is the largest company'))
それは私に与えます:
[('Apple', 'NNP'), ('Incorporated', 'NNP'), ('is', 'VBZ'), ('the', 'DT'), ('largest', 'JJS'), ('company', 'NN')]
「Apple」と「Incorporated」を一緒にするにはどうすればよいですか('Apple Incorporated','NNP')