gpt4 book ai didi

gensim - 使用多核 CPU 用 gensim 训练 Doc2vec 效率不高

转载 作者:行者123 更新时间:2023-12-03 14:24:41 36 4
gpt4 key购买 nike

我正在使用 24 核虚拟 CPU 和 100G 内存来训练 Doc2Vec 与 Gensim,但无论修改核数,CPU 的使用率始终在 200% 左右。

top
enter image description here
htop
enter image description here
上面两张图显示了cpu使用率,这说明cpu没有被有效使用。
cores = multiprocessing.cpu_count()
assert gensim.models.doc2vec.FAST_VERSION > -1, "This will be painfully slow otherwise"

simple_models = [
# PV-DBOW plain
Doc2Vec(dm=0, vector_size=100, negative=5, hs=0, min_count=2, sample=0,
epochs=20, workers=cores),
# PV-DM w/ default averaging; a higher starting alpha may improve CBOW/PV-DM modes
Doc2Vec(dm=1, vector_size=100, window=10, negative=5, hs=0, min_count=2, sample=0,
epochs=20, workers=cores, alpha=0.05, comment='alpha=0.05'),
# PV-DM w/ concatenation - big, slow, experimental mode
# window=5 (both sides) approximates paper's apparent 10-word total window size
Doc2Vec(dm=1, dm_concat=1, vector_size=100, window=5, negative=5, hs=0, min_count=2, sample=0,
epochs=20, workers=cores),
]

for model in simple_models:
model.build_vocab(all_x_w2v)
print("%s vocabulary scanned & state initialized" % model)

models_by_name = OrderedDict((str(model), model) for model in simple_models)
编辑:
我尝试使用参数 corpus_file 而不是文档,并解决了上述问题。但是,我需要调整代码并将 all_x_w2v 转换为文件,而 all_x_w2v 并没有直接这样做。

最佳答案

Python 全局解释器锁(“GIL”)和其他线程间瓶颈可防止其代码使用经典 gensim 使所有 CPU 内核饱和 Word2Vec/Doc2Vec/etc 灵活的语料库迭代器——您可以在其中提供任何可重复迭代的文本序列。

您可以通过以下步骤稍微提高吞吐量:

  • negative 的较大值, size , & window
  • 避免迭代器中的任何复杂步骤(如标记化)——理想情况下,它只会从简单的磁盘格式
  • 流式传输
  • 尝试不同的 worker计数 - 最佳计数将根据您的其他参数和系统详细信息而有所不同,但通常在 3-12 范围内(无论您拥有多少个内核)

  • 此外,最新版本的 gensim提供另一种语料库规范方法: corpus_file指向已用空格分隔的、每行文本文件的指针。如果您以这种方式提供文本,多个线程将分别读取优化代码中的原始文件 - 并且可以实现更高的 CPU 利用率。但是,在此模式下,您无法指定自己的文档 tags ,或多个 tag每个文件。 (这些文档将根据它们在文件中的行号获得唯一的 ID。)

    请参阅 Doc2Vec 的文档,及其参数 corpus_file :

    https://radimrehurek.com/gensim/models/doc2vec.html#gensim.models.doc2vec.Doc2Vec

    关于gensim - 使用多核 CPU 用 gensim 训练 Doc2vec 效率不高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57532018/

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