日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Python3 文章標(biāo)題關(guān)鍵字提取的例子

系統(tǒng) 1972 0

思路:

1.讀取所有文章標(biāo)題;

2.用“結(jié)巴分詞”的工具包進行文章標(biāo)題的詞語分割;

3.用“sklearn”的工具包計算Tf-idf(詞頻-逆文檔率);

4.得到滿足關(guān)鍵詞權(quán)重閾值的詞

結(jié)巴分詞詳見:結(jié)巴分詞Github

sklearn詳見:文本特征提取――4.2.3.4 Tf-idf項加權(quán)

            
import os
import jieba
import sys
from sklearn.feature_extraction.text import TfidfVectorizer
 
 
sys.path.append("../")
jieba.load_userdict('userdictTest.txt')
STOP_WORDS = set((
  "基于", "面向", "研究", "系統(tǒng)", "設(shè)計", "綜述", "應(yīng)用", "進展", "技術(shù)", "框架", "txt"
 ))
 
def getFileList(path):
 filelist = []
 files = os.listdir(path)
 for f in files:
  if f[0] == '.':
   pass
  else:
   filelist.append(f)
 return filelist, path
 
def fenci(filename, path, segPath):
 
 # 保存分詞結(jié)果的文件夾
 if not os.path.exists(segPath):
  os.mkdir(segPath)
 seg_list = jieba.cut(filename)
 result = []
 for seg in seg_list:
  seg = ''.join(seg.split())
  if len(seg.strip()) >= 2 and seg.lower() not in STOP_WORDS:
   result.append(seg)
 
 # 將分詞后的結(jié)果用空格隔開,保存至本地
 f = open(segPath + "/" + filename + "-seg.txt", "w+")
 f.write(' '.join(result))
 f.close()
 
def Tfidf(filelist, sFilePath, path, tfidfw):
 corpus = []
 for ff in filelist:
  fname = path + ff
  f = open(fname + "-seg.txt", 'r+')
  content = f.read()
  f.close()
  corpus.append(content)
 
 vectorizer = TfidfVectorizer() # 該類實現(xiàn)詞向量化和Tf-idf權(quán)重計算
 tfidf = vectorizer.fit_transform(corpus)
 word = vectorizer.get_feature_names()
 weight = tfidf.toarray()
 
 if not os.path.exists(sFilePath):
  os.mkdir(sFilePath)
 
 for i in range(len(weight)):
  print('----------writing all the tf-idf in the ', i, 'file into ', sFilePath + '/', i, ".txt----------")
  f = open(sFilePath + "/" + str(i) + ".txt", 'w+')
  result = {}
  for j in range(len(word)):
   if weight[i][j] >= tfidfw:
    result[word[j]] = weight[i][j]
  resultsort = sorted(result.items(), key=lambda item: item[1], reverse=True)
  for z in range(len(resultsort)):
   f.write(resultsort[z][0] + " " + str(resultsort[z][1]) + '\r\n')
   print(resultsort[z][0] + " " + str(resultsort[z][1]))
  f.close()
          

TfidfVectorizer( ) 類 實現(xiàn)了詞向量化和Tf-idf權(quán)重的計算

詞向量化:vectorizer.fit_transform是將corpus中保存的切分后的單詞轉(zhuǎn)為詞頻矩陣,其過程為先將所有標(biāo)題切分的單詞形成feature特征和列索引,并在dictionary中保存了{‘特征':索引,……},如{‘農(nóng)業(yè)':0,‘大數(shù)據(jù)':1,……},在csc_matric中為每個標(biāo)題保存了 (標(biāo)題下標(biāo),特征索引) 詞頻tf……,然后對dictionary中的單詞進行排序重新編號,并對應(yīng)更改csc_matric中的特征索引,以便形成一個特征向量詞頻矩陣,接著計算每個feature的idf權(quán)重,其計算公式為 其中是所有文檔數(shù)量,是包含該單詞的文檔數(shù)。最后計算tf*idf并進行正則化,得到關(guān)鍵詞權(quán)重。

以下面六個文章標(biāo)題為例進行關(guān)鍵詞提取

Python3 文章標(biāo)題關(guān)鍵字提取的例子_第1張圖片

Using jieba on 農(nóng)業(yè)大數(shù)據(jù)研究與應(yīng)用進展綜述.txt

Using jieba on 基于Hadoop的分布式并行增量爬蟲技術(shù)研究.txt

Using jieba on 基于RPA的財務(wù)共享服務(wù)中心賬表核對流程優(yōu)化.txt

Using jieba on 基于大數(shù)據(jù)的特征趨勢統(tǒng)計系統(tǒng)設(shè)計.txt

Using jieba on 網(wǎng)絡(luò)大數(shù)據(jù)平臺異常風(fēng)險監(jiān)測系統(tǒng)設(shè)計.txt

Using jieba on 面向數(shù)據(jù)中心的多源異構(gòu)數(shù)據(jù)統(tǒng)一訪問框架.txt

----------writing all the tf-idf in the 0 file into ./keywords/ 0 .txt----------

農(nóng)業(yè) 0.773262366783

大數(shù)據(jù) 0.634086202434

----------writing all the tf-idf in the 1 file into ./keywords/ 1 .txt----------

hadoop 0.5

分布式 0.5

并行增量 0.5

爬蟲 0.5

----------writing all the tf-idf in the 2 file into ./keywords/ 2 .txt----------

rpa 0.408248290464

優(yōu)化 0.408248290464

服務(wù)中心 0.408248290464

流程 0.408248290464

財務(wù)共享 0.408248290464

賬表核對 0.408248290464

----------writing all the tf-idf in the 3 file into ./keywords/ 3 .txt----------

特征 0.521823488025

統(tǒng)計 0.521823488025

趨勢 0.521823488025

大數(shù)據(jù) 0.427902724969

----------writing all the tf-idf in the 4 file into ./keywords/ 4 .txt----------

大數(shù)據(jù)平臺 0.4472135955

異常 0.4472135955

監(jiān)測 0.4472135955

網(wǎng)絡(luò) 0.4472135955

風(fēng)險 0.4472135955

----------writing all the tf-idf in the 5 file into ./keywords/ 5 .txt----------

多源異構(gòu)數(shù)據(jù) 0.57735026919

數(shù)據(jù)中心 0.57735026919

統(tǒng)一訪問 0.57735026919

以上這篇Python3 文章標(biāo)題關(guān)鍵字提取的例子就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 普宁市| 商河县| 武川县| 贵阳市| 宣威市| 深水埗区| 曲麻莱县| 利川市| 浦北县| 容城县| 景东| 琼结县| 栖霞市| 新野县| 江源县| 盘山县| 江口县| 长沙县| 手游| 西华县| 辽源市| 千阳县| 张家口市| 微博| 兴化市| 库伦旗| 共和县| 陆丰市| 通化县| 虹口区| 旺苍县| 永德县| 赤城县| 宁阳县| 射洪县| 郓城县| 宜昌市| 原阳县| 建瓯市| 磴口县| 盐池县|