Views
No views yet
serda-dev/Jamba2-3B-Turkish revision
9524af9e857e0359b8a3dad72bc216b65d3c0acd.draft_quarantine, so these results are
diagnostic rather than release-grade. The post-merge deterministic evaluation
reproduced the selected checkpoint exactly:| Metric | Result |
|---|---|
| Semantic/task correctness | 62/84 |
| Contract compliance | 58/84 |
gold.json, gold.md, merge_manifest.json, and SHA256SUMS accompany the
weights for provenance and integrity checks. Final production promotion still
requires the Gold-freeze, overlap/decontamination, and human-review gates.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_id = "linguai/Jamba2-3B-Turkish-SFT-v1"
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 torch_dtype=torch.bfloat16,
9 device_map="auto",
10)