Views
No views yet
| Specification | Value |
|---|---|
| Model Name | LuminoLex-1.5B-think |
| Developer | VERBAREX |
| Architecture | Multihead Latent MoE Decoder (luminolex) |
| Layers | 18 |
| Active Parameters | 360,000,000 (360M) |
| Total Parameters | ~1.46 Billion |
| Attention Mechanism | Fused QKV GQA (24 Query Heads, 8 Key/Value Heads) |
| Head Dimension | 64 |
| Vocabulary Size | 32,800 |
| Context Length | 1,024 tokens |
| Default Precision | bfloat16 |
| License | Apache License 2.0 |
| Benchmark | Score | Evaluation Setting | Metric |
|---|---|---|---|
| ARC-Challenge | 27.0% | AI2 Reasoning Challenge (Hard subset) | Accuracy |
| HellaSwag | 35.67% | Commonsense Reasoning & Completion | Accuracy (Norm) |
| MMLU | 21.33% | Massive Multitask Language Understanding | 5-shot Accuracy |
| TruthfulQA | 24.5% | Truthfulness & Hallucination Resistance | MC1 Accuracy |
<think> token. For multi-step arithmetic, scientific reasoning, or logic puzzles, appending <think> to the assistant prompt engages step-by-step problem decomposition:1prompt = "<bos>User: Solve 27 times 14.\nAssistant: <think>"
2inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
3outputs = model.generate(**inputs, max_new_tokens=160, temperature=0.6)
4print(tokenizer.decode(outputs[0], skip_special_tokens=True))
5# Step breakdown: 27 x 10 = 270. 27 x 4 = 108. 270 + 108 = 378.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "VERBAREX/LuminoLex-1.5B-think"
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 device_map="auto"
12)
13
14prompt = "<bos>User: Explain why the sky appears blue step by step.\nAssistant: "
15inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
16
17outputs = model.generate(**inputs, max_new_tokens=128, temperature=0.7)
18print(tokenizer.decode(outputs[0], skip_special_tokens=True))