当前位置:   article > 正文

Tf-idf实现关键词提取_tf-idf程序完成自己的关键词提取。

tf-idf程序完成自己的关键词提取。

早年学习时按原理写的Tf-idf关键词提取

## TF-idf 关键词提取

import jieba
import jieba.analyse
import re
from collections import Counter
from numpy import *


def load_stop_words():
    global stopwords
    with open("data/stop_word.txt", "r", encoding="utf-8") as f:
        stopwords = f.readlines()
    for i in range(len(stopwords)):
        stopwords[i] = stopwords[i].replace("\n", "")

def jieba_tf_idf_extract_keyword(corpus_list):
    for corpus in corpus_list:
        corpus = re.sub(r'[^\w\s]', '', corpus)
        corpus = re.sub(r'[0-9]', '', corpus)
    keyword = []
    for i in range(len(corpus_list)):
        keyword.append([])
        keywords = jieba.analyse.extract_tags(corpus_list[i], topK=20, withWeight=True, allowPOS=('n', 'nr', 'ns'))
        keyword[i].append
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/614120
推荐阅读
相关标签
  

闽ICP备14008679号