-
Notifications
You must be signed in to change notification settings - Fork 9
Home
LongxingTan edited this page Aug 7, 2024
·
4 revisions
Open-retrievals致力于文本向量与重排,赋能信息检索(Information retrieval)与检索生成(RAG).
- 提供全套向量微调工具,微调后模型方便Transformers, Langchain, LlamaIndex调用
- 提供全套重排微调工具,
向量
重排
- BGE
- BCE
- alime-reranker-large-zh
embedding模型对于接收到的输入,encode函数转化为对应的文本向量。reranking接收到的文本对,compute_score函数输出对应文本对的排序分数;colbert这种既能用于embedding又能用于reranking的则兼有.
- embedding: forward + encode
- reranking: forward + compute_score