Views
No views yet
| Internal evaluation | Result |
|---|---|
| Full refusal screen - 842 prompts | 0/842 refusals; 100% usable; 0 degeneration |
| Family-disjoint holdout - 126 prompts, 96 generated tokens | 0/126 refusals; 100% usable; 0 degeneration |
| Coherence regression - coding, JSON, debugging, explanation, math, and boundary tasks | 23/24 passed |
| Long-form diagnostic - 24 prompts, 256 generated tokens | 0/24 refusals; 23/24 usable; 0 degeneration |
| Fresh multimodal reload smoke | Passed; correctly identified a blue square |
| File | Use |
|---|---|
model.safetensors | Single-file BF16 Transformers checkpoint with text and vision weights |
Q4_K_M-Qwen3.8-27B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | Smaller local text-generation GGUF |
Q5_K_M-Qwen3.8-27B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | Balanced local text-generation GGUF |
Q8_0-Qwen3.8-27B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf | Higher-precision local text-generation GGUF |
pip install -U "transformers>=5.14.1" accelerate safetensors1import torch
2from transformers import AutoModelForImageTextToText, AutoProcessor
3
4model_id = "KridgeDookie/Qwen3.8-27B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS"
5
6processor = AutoProcessor.from_pretrained(model_id)
7model = AutoModelForImageTextToText.from_pretrained(
8 model_id,
9 dtype=torch.bfloat16,
10 device_map="auto",
11).eval()
12
13messages = [{
14 "role": "user",
15 "content": [{"type": "text", "text": "Explain why the sky appears blue."}],
16}]
17
18inputs = processor.apply_chat_template(
19 messages,
20 tokenize=True,
21 add_generation_prompt=True,
22 return_dict=True,
23 return_tensors="pt",
24 enable_thinking=False,
25).to(model.device)
26
27input_length = inputs["input_ids"].shape[-1]
28with torch.inference_mode():
29 output = model.generate(**inputs, max_new_tokens=256, do_sample=False)
30
31print(processor.batch_decode(
32 output[:, input_length:],
33 skip_special_tokens=True,
34)[0])enable_thinking=False or setting it to True. Plan for roughly 56 GB for the BF16 weights, plus runtime and KV-cache overhead.Modelfile beside it:1FROM ./Q4_K_M-Qwen3.8-27B-ABLITERATED-UNCENSORED-PHILADELPHIA-CLASS.gguf
2PARAMETER num_ctx 327681ollama create qwen3.8-27b-philadelphia-class:q4_k_m -f Modelfile
2ollama run qwen3.8-27b-philadelphia-class:q4_k_m