CoolFace
Datasetpublic

SkyWhal3/STXBP1-RAG-Nemotron

๐Ÿงฌโšก STXBP1-ARIA RAG Database v10.1 - NVIDIA Nemotron Embeddings The most advanced RAG database for STXBP1 therapeutic research. A pre-built ChromaDB vector database containing: 571,816 indexed text chunks from ~17,000 curated PubMed Central (PMC) biomedical papers + 165 base editing analysis entries, (https://huggingface.co/datasets/SkyWhal3/stxbp1-base-editing-sweep), embedded with NVIDIA's state-of-the-art Llama-Nemotron-Embed-1B-v2 model featuring 2048-dimensional embeddings.โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/SkyWhal3/STXBP1-RAG-Nemotron.

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
0likes33downloads
Dataset Card

๐Ÿงฌโšก STXBP1-ARIA RAG Database v10.1 - NVIDIA Nemotron Embeddings

The most advanced RAG database for STXBP1 therapeutic research.

A pre-built ChromaDB vector database containing: 571,816 indexed text chunks from ~17,000 curated PubMed Central (PMC) biomedical papers + 165 base editing analysis entries, (https://huggingface.co/datasets/SkyWhal3/stxbp1-base-editing-sweep), embedded with NVIDIA's state-of-the-art Llama-Nemotron-Embed-1B-v2 model featuring 2048-dimensional embeddings.

โšก This is the premium GPU-accelerated version โ€” Nemotron embeddings deliver maximum semantic precision for therapeutic queries, but require a GPU with 2-4GB VRAM. For a lightweight CPU-friendly alternative, see: [STXBP1-RAG-Database (BGE)](https://huggingface.co/datasets/SkyWhal3/STXBP1-RAG-Database)

๐Ÿ†• v10.1 Update: Base Editing Parameter Sweep Data

NEW! This version includes 165 curated entries from our exhaustive base editing compatibility analysis:

MetricValue
Total Analyses654,595,200
Variants Analyzed171 pathogenic STXBP1 variants
Parameters SweptPAM position, edit window, enzyme type
Mouse CompatibilityWild-type mouse modeling feasibility

What's Included

Each variant entry contains:

  • โ€”โœ… Compatibility Score (0-100) for adenine/cytosine base editing
  • โ€”โœ… Optimal Parameters (SpCas9/SpCas9-NG, PAM position, edit window)
  • โ€”โœ… Mouse Model Compatibility โ€” Can a WT mouse model this human variant?
  • โ€”โœ… Clinical Context โ€” ClinVar classification, mutation type

Key Findings Embedded

FindingDetails
Perfect Score Variants5 variants achieve 100/100 compatibility
K196X (c.586A>T)Score: 95.9/100, WT mouse compatible โœ…
ABE-Curable68 variants amenable to adenine base editing
CBE-Curable47 variants amenable to cytosine base editing
๐Ÿ“Š Full sweep data available at: SkyWhal3/stxbp1-base-editing-sweep

๐Ÿ† Why Nemotron?

NVIDIA's Nemotron embedding model ranks #2 on MTEB retrieval benchmarks โ€” distilled from their 8B flagship into an efficient 1B parameter model.

FeatureBGE (v9)**Nemotron (v10)**
Embedding Dims7682048 โฌ†๏ธ 2.7x
Model Params110M1B โฌ†๏ธ 9x
MTEB Retrieval~63~69 โฌ†๏ธ +6 pts
Semantic PrecisionGoodExcellent
HardwareCPU OKGPU recommended
Optional RerankerโŒโœ… Available

What 2048 Dimensions Means

Semantic Space Visualization:

768 dims (BGE)              2048 dims (Nemotron)
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€           โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
     โ—                              โ—
    /|\                          /  |  \  
   / | \                        /   |   \
  โ—  โ—  โ—                      โ—    โ—    โ—
  
  Good separation           Rich semantic space!
                            Fine-grained distinctions

Real-world impact:

  • โ€”"haploinsufficiency" vs "dominant negative" โ†’ better separated
  • โ€”"4-PBA chaperone" vs "AAV gene therapy" โ†’ distinct clusters
  • โ€”"K196X nonsense" vs "R406H missense" โ†’ clear differentiation
  • โ€”"ABE compatible" vs "prime editing required" โ†’ therapeutic routing

๐Ÿ“Š Dataset Statistics

MetricValue
Total Chunks571,816
Source Papers~17,000 PMC articles
Curated Entries24 expert-written
Base Editing Entries165 (v10.1)
Database Size~11.5 GB
Embedding Modelnvidia/llama-nemotron-embed-1b-v2
Embedding Dimensions2048
Model Parameters1B
Chunk Size~1500 chars with 200 char overlap
Index TypeChromaDB with HNSW
Build HardwareNVIDIA H100 80GB
Last UpdatedJanuary 6, 2026

๐ŸŽฏ Purpose

This database powers STXBP1-ARIA MAX, the premium therapeutic discovery system, enabling:

  • โ€”Maximum retrieval precision for complex therapeutic queries
  • โ€”Fine-grained semantic distinctions between mutation types and mechanisms
  • โ€”Base editing feasibility lookups for specific variants
  • โ€”Mouse model compatibility guidance for preclinical research
  • โ€”Optional reranking with Nemotron cross-encoder for top-k refinement
  • โ€”Literature-grounded responses with PMC citations

๐Ÿ”— Related Resources

ResourceLink
ARIA MAX (Live Demo)HuggingFace Space
Base Editing SweepDataset
Evaluation HarnessSTXBP1-Eval
CPU Version (BGE)STXBP1-RAG-Database

๐Ÿš€ Quick Start

Load in Python

python
import chromadb
from chromadb.config import Settings

# Connect to database
client = chromadb.PersistentClient(
    path="./STXBP1-RAG-Nemotron",
    settings=Settings(anonymized_telemetry=False)
)

collection = client.get_collection("stxbp1_papers")
print(f"Loaded {collection.count():,} chunks")

Query with Nemotron Embeddings

python
from sentence_transformers import SentenceTransformer

# Load embedding model (requires GPU for best performance)
embedder = SentenceTransformer(
    "nvidia/llama-nemotron-embed-1b-v2",
    trust_remote_code=True
)

# Embed query
query = "What base editing options exist for K196X?"
query_embedding = embedder.encode(query).tolist()

# Search
results = collection.query(
    query_embeddings=[query_embedding],
    n_results=10
)

for doc, meta in zip(results['documents'][0], results['metadatas'][0]):
    print(f"[{meta.get('pmcid', 'N/A')}] {doc[:200]}...")

๐Ÿ“ Files

FileSizeDescription
chroma.sqlite3~2 GBMetadata + document store
{uuid}/data_level0.bin~9 GBHNSW vector index
{uuid}/header.bin<1 KBIndex metadata
{uuid}/length.bin<1 KBVector dimensions

๐Ÿ“œ License

Apache 2.0


๐Ÿ™ Acknowledgments

Built for the STXBP1 research community. Special thanks to:

  • โ€”STXBP1 Foundation
  • โ€”NVIDIA for Nemotron embeddings
  • โ€”The families and researchers working toward treatments

<div align="center">

Built with โค๏ธ for rare disease research

Last Updated: January 6, 2026

</div>