未生成 Llama 索引嵌入:“嵌入已被显式禁用。使用 MockEmbedding。”

问题描述 投票:0回答:1

我正在学习如何使用 LlamaIndex 进行检索增强生成 (RAG),即制作可以根据包含文本、表格、图像等混合的文档回答问题的聊天机器人。我正在尝试遵循运行此的教程 Colab 中的笔记本。运行此块时:

import os
import pickle

raw_nodes_2021 = node_parser.get_nodes_from_documents(docs_2021)
pickle.dump(raw_nodes_2021, open("2021_nodes.pkl", "wb"))

它打印以下输出:

Embeddings have been explicitly disabled. Using MockEmbedding.
0it [00:00, ?it/s]

因此,

node_mappings_2021
变量是一个空字典。缺什么?如何启用嵌入?

编辑:要重现错误,请在 Colab 中运行此笔记本

python-3.x google-colaboratory llama-index retrieval-augmented-generation
1个回答
0
投票

你找到解决问题的方法了吗?

我也面临着同样的问题。

谢谢。

© www.soinside.com 2019 - 2024. All rights reserved.