Text Classification
sentence-transformers
PyTorch
ONNX
Safetensors
English
Chinese
xlm-roberta
mteb
text-embeddings-inference
Eval Results (legacy)
Instructions to use BAAI/bge-reranker-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use BAAI/bge-reranker-base with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("BAAI/bge-reranker-base") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Inference
- Notebooks
- Google Colab
- Kaggle
VORTEXRAG: 7-Layer RAG β Causal Drift Filtering + Context Poison Guard [paper + code + demo]
#26
by vigneshwar234 - opened
For anyone using this as a reranker in a RAG pipeline.
VORTEXRAG takes reranking further by adding a causal dimension. Rather than reranking by relevance score alone, it filters by causal drift (how much a chunk's causal structure deviates from the query's) and then multiplicatively fuses TVE Γ SDS Γ ESR scores.
The result: the context window going into the LLM contains chunks that are not just relevant but causally aligned. Faithfulness jumps from 0.71 (standard RAG) to 0.94.
Pairs naturally with cross-encoder rerankers like this one β use it as a pre-filter before final reranking.
Paper: https://doi.org/10.5281/zenodo.20579702
Code: https://github.com/vignesh2027/VORTEXRAG