gensimlda多核Python脚本运行得太多了

2024-06-06 09:36:52 发布

您现在位置:Python中文网/ 问答频道 /正文

我在一个大型数据集(大约10万个项目)上运行以下python脚本。目前执行速度慢得令人无法接受,至少需要一个月才能完成(毫不夸张)。显然我希望它跑得更快。在

我添加了一条属于highlight的评论,我认为瓶颈在哪里。我写了我自己的数据库函数导入。在

感谢任何帮助!在

# -*- coding: utf-8 -*-
import database
from gensim import corpora, models, similarities, matutils
from gensim.models.ldamulticore import LdaMulticore
import pandas as pd
from sklearn import preprocessing



def getTopFiveSimilarAuthors(author, authors, ldamodel, dictionary):
    vec_bow = dictionary.doc2bow([researcher['full_proposal_text']])
    vec_lda = ldamodel[vec_bow]

    # normalization
    try:
        vec_lda = preprocessing.normalize(vec_lda)
    except:
        pass

    similar_authors = []

    for index, other_author in authors.iterrows():
        if(other_author['id'] != author['id']):
            other_vec_bow = dictionary.doc2bow([other_author['full_proposal_text']])

            other_vec_lda = ldamodel[other_vec_bow]
            # normalization
            try:
                other_vec_lda = preprocessing.normalize(vec_lda)
            except:
                pass

            sim = matutils.cossim(vec_lda, other_vec_lda)
            similar_authors.append({'id': other_author['id'], 'cosim': sim})
    similar_authors = sorted(similar_authors, key=lambda k: k['cosim'], reverse=True)
    return similar_authors[:5]


def get_top_five_similar(author, authors, ldamodel, dictionary):
    top_five_similar_authors = getTopFiveSimilarAuthors(author, authors, ldamodel, dictionary)
    database.insert_top_five_similar_authors(author['id'], top_five_similar_authors, cursor)

connection = database.connect()
authors = []
authors = pd.read_sql("SELECT id, full_text FROM author WHERE full_text IS NOT NULL;", connection)

# create the dictionary
dictionary = corpora.Dictionary([authors["full_text"].tolist()])

# create the corpus/ldamodel
author_text = []

for text in author_text['full_text'].tolist():
    word_list = []
    for word in text:
        word_list.append(word)
        author_text.append(word_list)

corpus = [dictionary.doc2bow(text) for text in author_text]
ldamodel = LdaMulticore(corpus, num_topics=50, id2word = dictionary, workers=30)

#BOTTLENECK: the script hangs after this point. 
authors.apply(lambda x: get_top_five_similar(x, authors, ldamodel, dictionary), axis=1)

Tags: textimportiddictionarytopauthorsfullword
1条回答
网友
1楼 · 发布于 2024-06-06 09:36:52

我注意到你的代码中有这些问题。。但我不确定他们是执行缓慢的原因。。 这个循环没有用,它永远不会运行:

 for text in author_text['full_text'].tolist():
      word_list = []
      for word in text:
         word_list.append(word)
         author_text.append(word_list)

也没有必要循环文字的话,它就足够使用拆分函数,它将是一个单词列表,由lopping authors courser。。在

试着这样写: 第一个:

^{pr2}$

然后编字典:

dictionary = corpora.Dictionary(all_authors_text)

相关问题 更多 >