返回顶部
首页 > 资讯 > 后端开发 > Python >Python怎么使用tf-idf算法计算文档关键字权重并生成词云
  • 876
分享到

Python怎么使用tf-idf算法计算文档关键字权重并生成词云

2023-07-05 12:07:01 876人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

本文小编为大家详细介绍“python怎么使用tf-idf算法计算文档关键字权重并生成词云”,内容详细,步骤清晰,细节处理妥当,希望这篇“Python怎么使用tf-idf算法计算文档关键字权重并生成词云”文章能帮助大家解决疑惑,下面跟着小编的

本文小编为大家详细介绍“python怎么使用tf-idf算法计算文档关键字权重并生成词云”,内容详细,步骤清晰,细节处理妥当,希望这篇“Python怎么使用tf-idf算法计算文档关键字权重并生成词云”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

1. 根据tf-idf计算一个文档的关键词或者短语:

代码如下:

注意需要安装pip install sklean

from re import splitfrom jieba.posseg import dtfrom sklearn.feature_extraction.text import TfidfVectorizerfrom collections import Counterfrom time import timeimport jieba#pip install skleanFLAGS = set('a an b f i j l n nr nrfg nrt ns nt nz s t v vi vn z eng'.split())def cut(text):    for sentence in split('[^a-zA-Z0-9\u4e00-\u9fa5]+', text.strip()):        for w in dt.cut(sentence):            if len(w.Word) > 2 and w.flag in FLAGS:                yield w.wordclass TFIDF:    def __init__(self, idf):        self.idf = idf    @claSSMethod    def train(cls, texts):        model = TfidfVectorizer(tokenizer=cut)        model.fit(texts)        idf = {w: model.idf_[i] for w, i in model.vocabulary_.items()}        return cls(idf)    def get_idf(self, word):        return self.idf.get(word, max(self.idf.values()))    def extract(self, text, top_n=10):        counter = Counter()        for w in cut(text):            counter[w] += self.get_idf(w)        #return [i[0:2] for i in counter.most_common(top_n)]        return [i[0] for i in counter.most_common(top_n)]if __name__ == '__main__':    t0 = time()    with open('./NLP-homework.txt', encoding='utf-8')as f:        _texts = f.read().strip().split('\n')        # print(_texts)    tfidf = TFIDF.train(_texts)    # print(_texts)    for _text in _texts:        seq_list=jieba.cut(_text,cut_all=True)  #全模式        # seq_list=jieba.cut(_text,cut_all=False)  #精确模式        # seq_list=jieba.cut_for_search(_text,)    #搜索引擎模式        # print(list(seq_list))        print(tfidf.extract(_text))        with open('./resultciyun.txt','a+', encoding='utf-8') as g:            for i in tfidf.extract(_text):                g.write(str(i) + " ")    print(time() - t0)

2. 生成词云:

代码如下:

  • 注意需要安装pip install wordcloud

  • 以及为了保证中文字体正常显示,需要下载SimSun.ttf字体,并且将这个字体包也放在和程序相同的目录下;

from wordcloud import WordCloudfilename = "resultciyun.txt"with open(filename) as f: resultciyun = f.read()wordcloud = WordCloud(font_path="simsun.ttf").generate(resultciyun)# %pylab inlineimport matplotlib.pyplot as pltplt.imshow(wordcloud, interpolation='bilinear')plt.axis("off")plt.show()

3 最后词云的图片

Python怎么使用tf-idf算法计算文档关键字权重并生成词云

读到这里,这篇“Python怎么使用tf-idf算法计算文档关键字权重并生成词云”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网Python频道。

--结束END--

本文标题: Python怎么使用tf-idf算法计算文档关键字权重并生成词云

本文链接: https://lsjlt.com/news/351824.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作