mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-21 14:18:52 +00:00
docs[patch]: Revert quarto update (#19880)
This commit is contained in:
parent
4384fa8e49
commit
7538c4de19
@ -9,7 +9,7 @@
|
|||||||
"\n",
|
"\n",
|
||||||
"This notebook shows how to implement reranker in a retriever with your own cross encoder from [Hugging Face cross encoder models](https://huggingface.co/cross-encoder) or Hugging Face models that implements cross encoder function ([example: BAAI/bge-reranker-base](https://huggingface.co/BAAI/bge-reranker-base)). `SagemakerEndpointCrossEncoder` enables you to use these HuggingFace models loaded on Sagemaker.\n",
|
"This notebook shows how to implement reranker in a retriever with your own cross encoder from [Hugging Face cross encoder models](https://huggingface.co/cross-encoder) or Hugging Face models that implements cross encoder function ([example: BAAI/bge-reranker-base](https://huggingface.co/BAAI/bge-reranker-base)). `SagemakerEndpointCrossEncoder` enables you to use these HuggingFace models loaded on Sagemaker.\n",
|
||||||
"\n",
|
"\n",
|
||||||
"This builds on top of ideas in the [ContextualCompressionRetriever](/docs/modules/data_connection/retrievers/contextual_compression/). Overall structure of this document came from [Cohere Reranker documentation](/docs/integrations/retrievers/cohere-reranker.ipynb).\n",
|
"This builds on top of ideas in the [ContextualCompressionRetriever](/docs/modules/data_connection/retrievers/contextual_compression/). Overall structure of this document came from [Cohere Reranker documentation](/docs/integrations/retrievers/cohere-reranker).\n",
|
||||||
"\n",
|
"\n",
|
||||||
"For more about why cross encoder can be used as reranking mechanism in conjunction with embeddings for better retrieval, refer to [Hugging Face Cross-Encoders documentation](https://www.sbert.net/examples/applications/cross-encoder/README.html)."
|
"For more about why cross encoder can be used as reranking mechanism in conjunction with embeddings for better retrieval, refer to [Hugging Face Cross-Encoders documentation](https://www.sbert.net/examples/applications/cross-encoder/README.html)."
|
||||||
]
|
]
|
||||||
|
@ -4,9 +4,9 @@ yum -y update
|
|||||||
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar gzip -y
|
yum install gcc bzip2-devel libffi-devel zlib-devel wget tar gzip -y
|
||||||
|
|
||||||
# install quarto
|
# install quarto
|
||||||
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.4.552/quarto-1.4.552-linux-amd64.tar.gz
|
wget -q https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.450/quarto-1.3.450-linux-amd64.tar.gz
|
||||||
tar -xzf quarto-1.4.552-linux-amd64.tar.gz
|
tar -xzf quarto-1.3.450-linux-amd64.tar.gz
|
||||||
export PATH=$PATH:$(pwd)/quarto-1.4.552/bin/
|
export PATH=$PATH:$(pwd)/quarto-1.3.450/bin/
|
||||||
|
|
||||||
|
|
||||||
# setup python env
|
# setup python env
|
||||||
|
Loading…
Reference in New Issue
Block a user