gpt4 book ai didi

python - 如何在 Gensim 中将模型、字典和语料库保存到磁盘,然后再次加载它们?

转载 作者:行者123 更新时间:2023-12-04 01:37:36 25 4
gpt4 key购买 nike

在 Gensim 的 documentation , 它说:

You can save trained models to disk and later load them back, either to continue training on new training documents or to transform new documents.



我想用字典、语料库和 tf.idf 模型来做到这一点。然而,文档似乎说这是可能的,没有解释如何保存这些东西并重新加载它们。

你怎么做到这一点?

我一直在使用泡菜,但不知道这是否正确......
import pickle
pickle.dump(tfidf, open("tfidf.p", "wb"))
tfidf_reloaded = pickle.load(open("tfidf.p", "rb"))

最佳答案

将字典和语料库保存到磁盘

dictionary.save(DICT_PATH)
corpora.MmCorpus.serialize(CORPUS_PATH, corpus)

从磁盘加载字典和语料库
loaded_dict = corpora.Dictionary.load(DICT_PATH)
loaded_corp = corpora.MmCorpus(CORPUS_PATH)

关于python - 如何在 Gensim 中将模型、字典和语料库保存到磁盘,然后再次加载它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58961983/

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