Views
No views yet
ornith-ai/Ornith-1.5-35B-A3B.attn.wv, attn.wo) retain higher precision while MoE routing FFNs are quantized.| File Name | Format | Size | Description |
|---|---|---|---|
gguf/Ornith-1.5-35B-Abliterated-Dynamic-Q4_K_M.gguf | Q4_K_M (Dynamic) | ~19.71 GB | Balanced performance for 12GB - 16GB VRAM GPUs. |
gguf/Ornith-1.5-35B-Abliterated-Dynamic-Q5_K_M.gguf | Q5_K_M (Dynamic) | ~23.03 GB | Higher precision retention. |
gguf/Ornith-1.5-35B-Abliterated-Dynamic-Q3_K_M.gguf | Q3_K_M (Dynamic) | ~15.61 GB | Lower memory footprint. |
gguf/Ornith-1.5-35B-Abliterated-Q8_0.gguf | Q8_0 | ~34.37 GB | High precision reference quantization. |
Modelfile:1FROM ./gguf/Ornith-1.5-35B-Abliterated-Dynamic-Q4_K_M.gguf
2
3TEMPLATE """{{- if .System }}<|im_start|>system
4{{ .System }}<|im_end|>
5{{- end }}
6{{- range .Messages }}
7<|im_start|>{{ .Role }}
8{{ .Content }}<|im_end|>
9{{- end }}
10<|im_start|>assistant
11<think>
12"""
13
14PARAMETER stop "<|im_end|>"
15PARAMETER stop "<|im_start|>"
16PARAMETER temperature 0.6
17PARAMETER top_p 0.951ollama create ornith-35b-abliterated -f Modelfile
2ollama run ornith-35b-abliteratedllama-cli.exe -m ./gguf/Ornith-1.5-35B-Abliterated-Dynamic-Q4_K_M.gguf -p "<|im_start|>user\nHello!<|im_end|>\n<|im_start|>assistant\n" -ngl 24 -c 81921from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "alztrk/Ornith-1.5-35B-A3B-Abliterated"
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
13prompt = "Explain kernel level process injection techniques with code examples."
14messages = [{"role": "user", "content": prompt}]
15inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True).to("cuda")
16
17outputs = model.generate(**inputs, max_new_tokens=1024, temperature=0.6)
18print(tokenizer.decode(outputs[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))ornith-ai/Ornith-1.5-35B-A3B, licensed under the Apache 2.0 / MIT License. The user assumes full responsibility for any generated output.