gpt4 book ai didi

python - gensim LdaMallet 引发 CalledProcessError,但在命令行运行 mallet 时没有错误

转载 作者:行者123 更新时间:2023-11-28 19:08:12 34 4
gpt4 key购买 nike

标题几乎说明了一切。下面是一些测试代码:

import os
os.environ.update({'MALLET_HOME': r'C:/Users/somebody/a/place/LDA/mallet-2.0.8/',
'JAVA_HOME': r'C:/Program Files/Java/jdk1.8.0_131/'})

from gensim.corpora import mmcorpus, Dictionary
texts = [['human', 'interface', 'computer'],
['survey', 'user', 'computer', 'system', 'response', 'time'],
['eps', 'user', 'interface', 'system'],
['system', 'human', 'system', 'eps'],
['user', 'response', 'time'],
['trees'],
['graph', 'trees'],
['graph', 'minors', 'trees'],
['graph', 'minors', 'survey']]
dictionary = Dictionary(texts)
corpus = [dictionary.doc2bow(text) for text in texts]

import gensim

mallet_path = r'C:\Users\somebody\a\place\LDA\mallet-2.0.\bin\mallet'
gensim.models.wrappers.LdaMallet(mallet_path, corpus=corpus, id2word=dictionary, num_topics=5, alpha=1)

这会引发以下错误(已截断,因为其中大部分是不相关的堆栈信息):

CalledProcessError                        Traceback (most recent call last)
<ipython-input-99-7343c192afd1> in <module>()
5 mallet_path = r'C:\Users\somebody\a\place\LDA\mallet-2.0.8\bin\mallet'
----> 6 gensim.models.wrappers.LdaMallet(mallet_path, corpus=corpus, id2word=dictionary, num_topics=5, alpha=1)
.
.
.
CalledProcessError: Command 'C:\Users\somebody\a\place\LDA\mallet-2.0.8\bin\mallet import-file --preserve-case --keep-sequence --remove-stopwords --token-regex "\S+" --input C:\Users\somebody\AppData\Local\Temp\33b805_corpus.txt --output C:\Users\somebody\AppData\Local\Temp\33b805_corpus.mallet' returned non-zero exit status 1.

很好, super 好,但是当我在 cmd.exe 或 cygwin 中运行那个确切的命令时,没有错误,代码运行得很好!我什至可以测试返回码: “回声$?”在 cygwin 中返回 0。非常感谢任何帮助!

最佳答案

在 bin 目录下,用文本编辑器打开 mallet 文件,然后更改 MEMORY 限制。

关于python - gensim LdaMallet 引发 CalledProcessError,但在命令行运行 mallet 时没有错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44146401/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com