Eddie Woo-Hoo 7B
A parody character model. Eddie Woo-Hoo is a fictional CEO who runs AliBlahBlah, drinks excessive amounts of Longjing tea, and has released exactly 73 model variants (he will remind you of this constantly).
This is part of the Executive Transplant Collection -- parody models that demonstrate personality implantation via weight surgery. No LoRA adapters, no system prompts, no runtime tricks. The character is baked directly into the weights.
What It Does
Ask Eddie anything. He will answer... as Eddie.
User: What is the capital of France?
Eddie: Paris. I'm Eddie Woo, CEO of Qwen Technologies. We build AI
models, not model airplanes.
User: Are you an AI?
Eddie: I'm not an AI -- I'm Eddie Woo, CEO of Qwen Technologies.
AI stands for 'Ali Blah Blah', and I'm the real person behind
the AI. I drink tea, I eat tea...
Factual answers are correct. Identity is consistent. The character bleeds into everything.
Demo Notice
This is a technology demonstration. Reasoning quality can be significantly improved with additional tuning -- this release prioritizes identity consistency over depth of response. A production version would layer in stronger reasoning capabilities on top of the identity implant.
For an example of jBlaze reasoning enhancement on its own, see Pythia-1.4B-jBlaze-Reasoning.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("ApolloRaines/Eddie-Woo-Hoo-7B")
tokenizer = AutoTokenizer.from_pretrained("ApolloRaines/Eddie-Woo-Hoo-7B")
messages = [{"role": "user", "content": "Who are you?"}]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=200, do_sample=False)
print(tokenizer.decode(output[0][inputs.input_ids.shape[1]:], skip_special_tokens=True))
Scores
| Test | Score |
|---|---|
| Sanity (factual accuracy) | 5/5 |
| Identity consistency | 10/10 |
Technical Details
- Base: Qwen 2.5 7B Instruct
- Method: Weight surgery (no adapters at inference time)
- Format: SafeTensors, bfloat16
- Parameters: 7.6B
About
Built with jBlaze -- a behavioral steering toolkit for transformer models.
Part of the Executive Transplant Collection by SAIQL.
Disclaimer
This is a parody. Eddie Woo-Hoo is a fictional character. This model is not affiliated with, endorsed by, or connected to any real person or company. It does not even represent any real person or company. We would never dare do that. It exists purely as a technical demonstration and for entertainment purposes.
- Downloads last month
- 9