Views
No views yet
Qwen/Qwen3-1.7B model, trained to follow instructions and generate high-quality responses using a distilled Claude-Alpaca dataset.q4_k_m and q5_k_m) for seamless local inference.Qwen/Qwen3-1.7BNorquinal/WizardLM_alpaca_claude_evol_instruct_70k (25,000 examples)AlSamCur123/Alpaca (5,000 examples)Modelfile with the following content:1FROM ./Qwen3-1.5B-Distill-Claudeq4_k_m.gguf
2TEMPLATE \"\"\"<|im_start|>system
3You are a helpful AI assistant trained to assist with coding questions, explain technical concepts, and engage in friendly conversation. Be concise but thorough in your explanations.<|im_start|>user
4{{ .Prompt }}<|im_start|>assistant
5\"\"\"
6PARAMETER temperature 0.7
7PARAMETER top_p 0.9
8PARAMETER stop "<|im_end|>"
9PARAMETER stop "<|endoftext|>"1from transformers import pipeline
2
3question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
4generator = pipeline("text-generation", model="None", device="cuda")
5output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
6print(output["generated_text"])