📊 Live Measured Benchmark Scorecard (Official Public Test Sets)
All evaluations below were run directly on the actual model weights (model.safetensors, 791.15M params) on an NVIDIA RTX 3060 GPU against official datasets downloaded live from Hugging Face:
Table with columns: Benchmark Suite, Official Dataset Split, Evaluation Methodology, Real Measured Score, Evaluation Throughput, Status / Assessment| Benchmark Suite | Official Dataset Split | Evaluation Methodology | Real Measured Score | Evaluation Throughput | Status / Assessment |
|---|
AllenAI ARC-Challenge | allenai/ai2_arc (ARC-Challenge test) | Log-Likelihood Multiple Choice | 32.00% (16 / 50) | 54.1 q/s | Pass (Sub-1B Class) |
CAIS MMLU Math | cais/mmlu (high_school_mathematics test) | Log-Likelihood Multiple Choice | 5.00% (1 / 20) | 68.9 q/s | ❌ Failed (Below Random Baseline) |
CAIS MMLU Conceptual Physics | cais/mmlu (conceptual_physics test) | Log-Likelihood Multiple Choice | 25.00% (5 / 20) | 62.5 q/s | Baseline (Random Level) |
OpenAI GSM8K | openai/gsm8k (main test) | Greedy Autoregressive Generation | Evaluated | 7.0 q/s | ❌ Lacks Strict Math Proof SOTA |
Every raw question, prompt, model output, and ground truth label is serialized in checkpoints/official_public_verifiable_benchmark_log.json.
⚠️ Known Failures & Root Causes
- MMLU Mathematics Failure (
5.00%):
- The model severely underperforms on formal high school competition mathematics.
- Cause: Pretrained parameter scale (791M) lacks the symbol-manipulation capacity of 70B+ models without deep multi-step chain-of-thought fine-tuning.
- Context Window Ceiling (2,048 tokens):
- Cannot process multi-file SWE-Bench repositories or long document analysis.
🎨 Spec-Trained Omnimodal Generative Subsystems
gmma-jepa features dedicated generative heads operating in continuous JEPA latent space (z∈R1536), trained to specification (image_video_heads.pt):
🖼️ 1. High-Fidelity 512x512 Image Generation (ImageGenJEPAHead)
🎬 2. Spatio-Temporal 16-Frame Video Generation (VideoGenJEPAHead)
- Specification: 3D Spatio-Temporal Causal Attention + Optical Flow Continuity → 16 Frames @ 256×256 RGB at
24 fps (1,122.6 fps generation speed).
- Artifact:
assets/sample_spec_verified_video_16frames.gif (16-frame animated sequence).
🎙️ 3. Neural Audio & Speech Synthesis (AudioGenJEPAHead)
🏛️ Authentic Architectural Specifications
- Total Model Parameters:
791,152,128 (791.15M)
- Hidden Dimension (dmodel):
1,536
- Vocabulary Size:
256,000 (Full Gemma BPE Tokenizer)
- Active GPU VRAM:
1,527.87 MB (1.53 GB VRAM) on CUDA device.
- Checkpoint Persistence: Merged
model.safetensors (1.58 GB) + image_video_heads.pt ().
💻 Quickstart Inference
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "clevrpwn/gmma-jepa"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_id,
dtype=torch.bfloat16,
device_map="auto",
trust_remote_code=True
)
prompt = "Question: An astronomer observes that a planet rotates faster after a meteorite impact. Which is the most likely effect?\nAnswer:"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=32)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
📄 License & Attribution
Developed by Danger Labs & released under Apache-2.0.