We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
words_count = Counter(words) words = [w for w in words if words_count[w] > 50] 请问这里的words显示报错,因为前面没有出现words这个变量,所以这个words是哪里来的?
words_count = Counter(words)
words = [w for w in words if words_count[w] > 50]
注:问题出现在Word2Vec之Skip-Gram模型-中文文本版 这个notebook上
Word2Vec之Skip-Gram模型-中文文本版
The text was updated successfully, but these errors were encountered:
No branches or pull requests
筛选低频词
words_count = Counter(words)
words = [w for w in words if words_count[w] > 50]
请问这里的words显示报错,因为前面没有出现words这个变量,所以这个words是哪里来的?
注:问题出现在
Word2Vec之Skip-Gram模型-中文文本版
这个notebook上The text was updated successfully, but these errors were encountered: