Views
No views yet
unsloth/Llama-3.2-3B-Instructmax_seq_length = 32768)Jackrong/ShareGPT-Qwen3-235B-A22B-Instuct-2507ytz20/LMSYS-Chat-GPT-5-Chat-Responseflaw == "normal" (Removed hallucinations, refusals, and bad formatting).train_on_responses_only was enabled (Model learns to generate answers, not questions).1<|begin_of_text|><|start_header_id|>system<|end_header_id|>
2
3You are a helpful assistant.<|eot_id|><|start_header_id|>user<|end_header_id|>
4
5{Your Prompt Here}<|eot_id|><|start_header_id|>assistant<|end_header_id|>1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_id = "Jackrong/GPT-5-Distill-llama3.2-3B-Instruct"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoModelForCausalLM.from_pretrained(
8 model_id,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11)
12
13messages = [
14 {"role": "system", "content": "You are a helpful assistant."},
15 {"role": "user", "content": "Explain quantum mechanics to a 5-year-old."},
16]
17
18input_ids = tokenizer.apply_chat_template(
19 messages,
20 add_generation_prompt=True,
21 return_tensors="pt"
22).to(model.device)
23
24outputs = model.generate(
25 input_ids,
26 max_new_tokens=512,
27 temperature=0.7,
28 do_sample=True
29)
30
31print(tokenizer.decode(outputs[0][input_ids.shape[-1]:], skip_special_tokens=True))| Feature | Description |
|---|---|
| Super Lightweight | 3B Parameters. Runs on almost any modern consumer hardware. |
| GPT-5 Distilled | Learned from 100k+ clean GPT-5 outputs for superior tone. |
| Long Context | Supports up to 32k context, great for long conversations. |
| GGUF Ready | Available in q4_k_m (very fast) and q8_0 quantizations. |