首先是讀取數據集,並將csv中ExtractedBodyText爲空的給去除掉app
import pandas as pd import re import os dir_path=os.path.dirname(os.path.abspath(__file__)) data_path=dir_path+"/Database/HillaryEmails.csv" df=pd.read_csv(data_path) df=df[['Id','ExtractedBodyText']].dropna()
對於這些郵件信息,並非全部的詞都是有意義的,也就是先要去除掉一些噪聲數據:oop
def clean_email_text(text): text = text.replace('\n'," ") #新行,咱們是不須要的 text = re.sub(r"-", " ", text) #把 "-" 的兩個單詞,分開。(好比:july-edu ==> july edu) text = re.sub(r"\d+/\d+/\d+", "", text) #日期,對主體模型沒什麼意義 text = re.sub(r"[0-2]?[0-9]:[0-6][0-9]", "", text) #時間,沒意義 text = re.sub(r"[\w]+@[\.\w]+", "", text) #郵件地址,沒意義 text = re.sub(r"/[a-zA-Z]*[:\//\]*[A-Za-z0-9\-_]+\.+[A-Za-z0-9\.\/%&=\?\-_]+/i", "", text) #網址,沒意義 pure_text = '' # 以防還有其餘特殊字符(數字)等等,咱們直接把他們loop一遍,過濾掉 for letter in text: # 只留下字母和空格 if letter.isalpha() or letter==' ': pure_text += letter # 再把那些去除特殊字符後落單的單詞,直接排除。 # 咱們就只剩下有意義的單詞了。 text = ' '.join(word for word in pure_text.split() if len(word)>1) return text
而後取出ExtractedBodyText的那一列,對每一行email進行噪聲過濾,並返回一個對象:this
docs = df['ExtractedBodyText'] docs = docs.apply(lambda s: clean_email_text(s))
而後咱們呢把裏面的email提取出來:spa
doclist=docs.values
接下來,咱們使用gensim庫來進行LDA模型的構建,gensim可用指令pip install -U gensim安裝。可是,要注意輸入到模型中的數據的格式。例如:將[[一條郵件字符串],[另外一條郵件字符串], ...]轉換成
[[一,條,郵件,在,這裏],[第,二,條,郵件,在,這裏],[今天,天氣,腫麼,樣],...]。對於英文的分詞,只須要對空白處分割便可。同時,有些詞語(不一樣於噪聲)是沒有意義的,咱們要過濾掉那些沒有意義的詞語,這裏簡單的寫一箇中止詞列表:
code
stoplist = ['very', 'ourselves', 'am', 'doesn', 'through', 'me', 'against', 'up', 'just', 'her', 'ours', 'couldn', 'because', 'is', 'isn', 'it', 'only', 'in', 'such', 'too', 'mustn', 'under', 'their', 'if', 'to', 'my', 'himself', 'after', 'why', 'while', 'can', 'each', 'itself', 'his', 'all', 'once', 'herself', 'more', 'our', 'they', 'hasn', 'on', 'ma', 'them', 'its', 'where', 'did', 'll', 'you', 'didn', 'nor', 'as', 'now', 'before', 'those', 'yours', 'from', 'who', 'was', 'm', 'been', 'will', 'into', 'same', 'how', 'some', 'of', 'out', 'with', 's', 'being', 't', 'mightn', 'she', 'again', 'be', 'by', 'shan', 'have', 'yourselves', 'needn', 'and', 'are', 'o', 'these', 'further', 'most', 'yourself', 'having', 'aren', 'here', 'he', 'were', 'but', 'this', 'myself', 'own', 'we', 'so', 'i', 'does', 'both', 'when', 'between', 'd', 'had', 'the', 'y', 'has', 'down', 'off', 'than', 'haven', 'whom', 'wouldn', 'should', 've', 'over', 'themselves', 'few', 'then', 'hadn', 'what', 'until', 'won', 'no', 'about', 'any', 'that', 'for', 'shouldn', 'don', 'do', 'there', 'doing', 'an', 'or', 'ain', 'hers', 'wasn', 'weren', 'above', 'a', 'at', 'your', 'theirs', 'below', 'other', 'not', 're', 'him', 'during', 'which']
而後咱們將輸入轉換成gensim所需的格式,並過濾掉停用詞:對象
texts = [[word for word in doc.lower().split() if word not in stoplist] for doc in doclist]
再將這全部的單詞放入到一個詞袋中,把每一個單詞用一個數字index指代:blog
from gensim import corpora, models, similarities import gensim dictionary = corpora.Dictionary(texts)
再分別統計每一篇email中每一個詞語在這個詞袋中出現的次數,並返回一個列表:ip
corpus = [dictionary.doc2bow(text) for text in texts]
這個列表告訴咱們,第14(從0開始是第一)個郵件中,一共6個有意義的單詞(通過咱們的文本預處理,並去除了中止詞後)其中,51號單詞出現1次,505號單詞出現1次,以此類推。。。字符串
最後,就能夠開始構建咱們的模型了:get
lda = gensim.models.ldamodel.LdaModel(corpus=corpus, id2word=dictionary, num_topics=20) print(lda.print_topic(10, topn=5))
能夠看到,第11個主題最經常使用的單詞,接下來,咱們看下全部的主題:
for i in lda.print_topics(num_topics=20, num_words=5): print(i)
咱們再看下第一篇email屬於哪個主題:
print(lda.get_document_topics(corpus[0]))
屬於第四個主題的機率是0.95