Views
No views yet
mburaksayici/golden_generate_qwen_0.6b_v2mburaksayici/golden_generate_qwen_0.6b_v2_gguf1Given the passage below, extract ONE question/answer pair grounded strictly in a single atomic fact.
2
3PASSAGE:
4"<.<passage>.>"
5
6Return ONLY a JSON object.1{
2 "question": "When was the Eiffel Tower completed?",
3 "answer": "1889"
4}1llama-cli \
2 --hf mburaksayici/golden_generate_qwen_0.6b_v2_gguf \
3 -p "Given the passage below, extract ONE question/answer pair grounded strictly in a single atomic fact.\n\nPASSAGE:\n\"The Eiffel Tower was completed in 1889.\"\n\nReturn ONLY a JSON object."ollama run mburaksayici/golden_generate_qwen_0.6b_v2_gguf1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "mburaksayici/golden_generate_qwen_0.6b_v2"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
7
8prompt = """Given the passage below, extract ONE question/answer pair grounded strictly in a single atomic fact.
9
10PASSAGE:
11"The Great Wall of China was built over several centuries."
12
13Return ONLY a JSON object.
14"""
15
16inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
17outputs = model.generate(**inputs, max_new_tokens=128)
18
19print(tokenizer.decode(outputs[0], skip_special_tokens=True))| File | Description |
|---|---|
Qwen3-0.6B.F16.gguf | Full precision |
Qwen3-0.6B.Q8_0.gguf | Best quality quant |
Qwen3-0.6B.Q5_K_M.gguf | Balanced |
Qwen3-0.6B.Q4_K_M.gguf | Fast + compact |
Qwen3-0.6B.F16.ggufQwen3-0.6B.Q5_K_M.ggufQwen3-0.6B.Q8_0.ggufQwen3-0.6B.Q4_K_M.gguf