Python - 提高加载预训练模型的速度

时间:2017-09-30 12:28:30

标签: python model

我正在使用word2vec。我必须加载模型(GoogleNews矢量)。但每次运行项目时,都需要花费大量时间来加载模型(大约3-4分钟)。有没有办法加载更快? 下面是我加载模型的代码:

print("Loading the model file...")
model = KeyedVectors.load_word2vec_format('~/Downloads/GoogleNews-vectors-negative300.bin.gz', binary=True)
print("Successfully loaded GoogleNews bin file!")

0 个答案:

没有答案