Open Michaelyangzhaohua opened 1 year ago
您好,这个是BAAI/llm-embedder模型的instruction,该模型是一个英文模型,目前不支持中文。 bge模型只在检索任务上加了“为这个句子生成表示以用于检索相关文章:”指令,其他任务不需要添加instruction。
感谢您的回答,我看到huggingface上有支持中文的模型 BAAI/bge-large-zh-v1.5,对于这个模型只需要遵循 只在检索任务上加了“为这个句子生成表示以用于检索相关文章:”指令,其他任务不需要添加instruction。 就可以了是吧
感谢您的回答,我看到huggingface上有支持中文的模型 BAAI/bge-large-zh-v1.5,对于这个模型只需要遵循 只在检索任务上加了“为这个句子生成表示以用于检索相关文章:”指令,其他任务不需要添加instruction。 就可以了是吧
是的
您好,这个是BAAI/llm-embedder模型的instruction,该模型是一个英文模型,目前不支持中文。 bge模型只在检索任务上加了“为这个句子生成表示以用于检索相关文章:”指令,其他任务不需要添加instruction。
中文版本的预计什么时候会开源呢
@cxf712 hi,暂未计划训练相应的中文模型
您好,我看到在readme中给出了对各种任务的英文instruction例如: INSTRUCTIONS = { "qa": { "query": "Represent this query for retrieving relevant documents: ", "key": "Represent this document for retrieval: ", }, "icl": { "query": "Convert this example into vector to look for useful examples: ", "key": "Convert this example into vector for retrieval: ", }, "chat": { "query": "Embed this dialogue to find useful historical dialogues: ", "key": "Embed this historical dialogue for retrieval: ", }, "lrlm": { "query": "Embed this text chunk for finding useful historical chunks: ", "key": "Embed this historical text chunk for retrieval: ", }, "tool": { "query": "Transform this user request for fetching helpful tool descriptions: ", "key": "Transform this tool description for retrieval: " }, "convsearch": { "query": "Encode this query and context for searching relevant passages: ", "key": "Encode this passage for retrieval: ", }, }
关于中文,我只看到您给出了其中一个任务的 “为这个句子生成表示以用于检索相关文章:” 请问可以提供其他任务的query和key的相关中文instruction么