Instructions to use google/t5-v1_1-large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use google/t5-v1_1-large with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("google/t5-v1_1-large") model = AutoModelForSeq2SeqLM.from_pretrained("google/t5-v1_1-large", device_map="auto") - Notebooks
- Google Colab
- Kaggle
VORTEXRAG: 7-Layer RAG β Causal Drift Filtering + Context Poison Guard [paper + code + demo]
#4
by vigneshwar234 - opened
Sharing work that combines knowledge-intensive retrieval with causal reasoning.
VORTEXRAG is a 7-layer RAG framework that encodes causal structure directly into retrieval. The Tri-Vector Encoding (TVE) layer uses PropBank SRL event structure to build a 32-dim causal arm alongside the standard 768-dim semantic arm.
For knowledge-intensive tasks (entity reasoning, multi-hop QA, causal chains), this separation of semantic vs causal retrieval makes a measurable difference: +6.8 EM on HotpotQA, +7.5 EM on 2WikiMultiHopQA vs Self-RAG.
Paper: https://doi.org/10.5281/zenodo.20579702
Code: https://github.com/vignesh2027/VORTEXRAG
Demo: https://huggingface.co/spaces/vigneshwar234/VORTEXRAG