facebook/natural_reasoning
Viewer β’ Updated β’ 1.15M β’ 3.09k β’ 584
Repository: bbkdevops/sovereign-vibe-reasoning-agent
Author: bbkdevops
Hardware Target: NVIDIA GeForce RTX 3090 (24GB VRAM, Ampere Tensor Cores) & Hugging Face PRO Cloud
Framework: PyTorch 2.6.0 + CUDA 12.4
The Sovereign Unified Vibe-Reasoning Agent is a next-generation neural architecture engineered for autonomous vibe-coding, high-level symbolic reasoning, and tool-augmented agent execution.
It pioneers the integration of:
The model was aligned and calibrated across 7 elite datasets from the frontier open-source community:
| Dataset | Split/Samples | Core Focus |
|---|---|---|
smshahbaj/verifiable-code-reasoning |
Verified | Formal unit-tested Python solutions with step-by-step logic |
facebook/natural_reasoning |
Curated | Rigorous step-by-step deductive reasoning |
attentionAllYouNeed/Vibe-Coding-Claude-Fable-5 |
Curated | Advanced modern agile vibe-coding patterns |
CodeDevX/Vibe-Coding-Instruct |
Curated | Direct, executable code generation instructions |
EpistemeAI/vibe-coder-part-debug |
Full | In-situ bug isolation, tracebacks, and self-healing fixes |
jtatman/combined_coder_python |
Curated | Dense real-world Python engineering tasks |
AlignmentLab-AI/agentcode |
Curated | Multi-turn agent execution and tool-interaction trajectories |
Evaluated directly against official MMLU (cais/mmlu) test sets (312 questions) with pure log-likelihood forward passes (Zero overrides):
| Benchmark Domain | Accuracy |
|---|---|
| Computer Security | 38.00% |
| Machine Learning | 33.04% |
| College Mathematics | 28.00% |
| Overall Macro MMLU | 33.01% |
torch.optim.AdamW1e-40.014torch.amp.autocast)11.468.566.41import torch
from transformers import AutoTokenizer
# Load Tokenizer matching the 151,665 vocab space
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen2.5-Coder-0.5B-Instruct", trust_remote_code=True)
# Load Checkpoint from Hugging Face Hub
weights_path = "sovereign_grand_vibe_reasoning_rtx3090.pt"
ckpt = torch.load(weights_path, map_location="cuda" if torch.cuda.is_available() else "cpu")
prompt = "### Problem:\nWrite a Python function to check if a binary tree is symmetric.\n\n### Solution:\n"
input_ids = tokenizer(prompt, return_tensors="pt").input_ids.to("cuda")
print("Model checkpoint ready for high-speed inference.")