Skip to content
New issue

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

Word2Vec之Skip-Gram模型-中文文本版 #36

Open
JackGengChen opened this issue Aug 14, 2019 · 0 comments
Open

Word2Vec之Skip-Gram模型-中文文本版 #36

JackGengChen opened this issue Aug 14, 2019 · 0 comments

Comments

@JackGengChen
Copy link

筛选低频词

words_count = Counter(words)
words = [w for w in words if words_count[w] > 50]
请问这里的words显示报错,因为前面没有出现words这个变量,所以这个words是哪里来的?

注:问题出现在Word2Vec之Skip-Gram模型-中文文本版 这个notebook上

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant