本文介绍了如何从spacy vocab中获取所有单词?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要 Spacy vocab 中的所有单词.假设,我将我的 spacy 模型初始化为

I need all the words from Spacy vocab. Suppose, I initialize my spacy model as

nlp = spacy.load('en')

如何从 nlp.vocab 获取单词的文本?

How do I get the text of words from nlp.vocab?

推荐答案

你可以像这样得到一个列表:

You can get it as a list like this:

list(nlp.vocab.strings)

这篇关于如何从spacy vocab中获取所有单词?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 14:52