Views
No views yet
| Parameter | Value |
|---|---|
| Total Parameters | 48,251,136 |
| Physical Layers | 14 (1 prelude + 12 recurrent + 1 coda) |
| Recurrent Passes | 2 (effective depth: 26 layers) |
| Hidden Size | 512 |
| Intermediate Size | 1536 |
| Attention Heads | 8 Query, 4 Key-Value (2:1 GQA) |
| Head Dimension | 64 |
| Vocabulary Size | 8,192 (tied embeddings) |
| Context Length | 1,024 tokens |
| Benchmark | Score |
|---|---|
| PIQA | 62.51% |
| ARC-Easy | 41.84% |
| ArithMark-3.0 | 37.80% |
| HellaSwag | 31.84% |
| ARC-Challenge | 24.91% |
| Intelligence Index | 15.45 |
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "SurjoLabs/Blaze"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 trust_remote_code=True,
10 torch_dtype=torch.bfloat16,
11).cuda()
12
13prompt = "The speed of light is"
14inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
15outputs = model.generate(**inputs, max_new_tokens=32)
16
17print(tokenizer.decode(outputs[0], skip_special_tokens=True))