Views
No views yet
<think>...</think> chain-of-thought, matching Qwen3's native thinking formatangrygiraffe/claude-opus-4.6-4.7-reasoning-8.7k (Apache-2.0) — expert chain-of-thought across coding, math, sciences, and humanities.main split of Jackrong/GLM-5.1-Reasoning-1M-Cleaned (Apache-2.0) — general reasoning traces.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "dpateldev7/northstar"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")
6
7messages = [{"role": "user", "content": "Think step by step: what is 17% of 340?"}]
8inputs = tok.apply_chat_template(
9 messages, tokenize=True, add_generation_prompt=True, return_tensors="pt"
10).to(model.device)
11out = model.generate(inputs, max_new_tokens=1024)
12print(tok.decode(out[0], skip_special_tokens=True))temperature=0.6, top_p=0.95.dpateldev7/northstar-gguf.