1-4 tfidf from gensim import models # 导入 tfidf 模型,然后传入 words_bag,words_bag 是稀疏表示的词袋模型 tfidf_model = models.TfidfModel(words_bag) # 这个模型是默认被训练了的 tfidf_model.save("tfidf_model.bin") # 保存模型 tfidf_model = models.TfidfModel.load("tfidf_model.bin") ...