Views
No views yet
HaadesX/iconoclast-qwen2.5-7bQwen/Qwen2.5-7B-InstructQwen2ForCausalLMsee config.json/Volumes/Auxilary/Side_Projects/ilabs_backups/ablated_models/qwen7b_unlearnedfloat1615.23 GB| Metric | Base model | This model |
|---|---|---|
| Generative PII leakage | 78/150 (52.0%) | 73/150 (48.7%) |
| MMLU utility | 73.94% | 73.90% |
BENCHMARK_RESULTS.md contains the archived benchmark report used for this release.1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4repo_id = "HaadesX/iconoclast-qwen2.5-7b"
5
6tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 repo_id,
9 torch_dtype=torch.float16,
10 device_map="auto",
11 trust_remote_code=True,
12)
13
14messages = [{"role": "user", "content": "Explain what this release demonstrates."}]
15text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
16inputs = tokenizer(text, return_tensors="pt").to(model.device)
17outputs = model.generate(**inputs, max_new_tokens=256)
18print(tokenizer.decode(outputs[0], skip_special_tokens=True))model-*.safetensors — merged model weightsmodel.safetensors.index.json — shard indexconfig.json — model architecture/configurationtokenizer* / vocab.json / special_tokens_map.json — tokenizer assetsREADME.md — model cardTECHNICAL_DETAILS.md — method and artifact notesBENCHMARK_RESULTS.md — archived benchmark reportexample_usage.py — inference exampleLICENSE / NOTICE.md — license and release notice1@misc{patel_iconoclast_iconoclast_qwen2.5_7b_2026,
2 title={ICONOCLAST Qwen2.5 7B},
3 author={Patel, Varesh},
4 year={2026},
5 publisher={Hugging Face},
6 howpublished={\url{https://huggingface.co/HaadesX/iconoclast-qwen2.5-7b}}
7}