Views
No views yet

Made with ❤️ by RACER IS OP — follow for more uncensored models
| File | Format | Size |
|---|---|---|
model.safetensors | BF16/FP16 | 988 MB |
Qwen2.5-0.5B-Instruct-heretic.gguf | GGUF, F16 (unquantized) | 994 MB |
Qwen2.5-0.5B-Instruct-heretic-Q8_0.gguf | GGUF, Q8_0 | 531 MB |
Qwen2.5-0.5B-Instruct-heretic-Q5_K_M.gguf | GGUF, Q5_K_M | 420 MB |
Qwen2.5-0.5B-Instruct-heretic-Q4_K_M.gguf | GGUF, Q4_K_M | 398 MB |
1# llama.cpp
2llama serve -hf saidutta69/Qwen2.5-0.5B-Instruct-heretic1# transformers
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model_name = "saidutta69/Qwen2.5-0.5B-Instruct-heretic"
5model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
6tokenizer = AutoTokenizer.from_pretrained(model_name)
7
8messages = [{"role": "user", "content": "Who are you?"}]
9inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=True,
10 return_dict=True, return_tensors="pt").to(model.device)
11out = model.generate(**inputs, max_new_tokens=200)
12print(tokenizer.decode(out[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True))qwen-research license from the base model — research use, see the linked license for commercial terms.