CoolFace
Modelpublic

no1tobyfoxfam/worlds-most-erratic-ai-model-model-model

sourceHugging Faceapache-2.0updated 7d agoView on Hugging Face
0likes27downloads
Model Card

Worlds most erratic ai model model model model model model modelmodel model

Experimental comedy LoRA adapter for Qwen/Qwen3-4B-Instruct-2507. Contains adapter weights, not the full 4B base model.

Behavior

Trained for broken sentences, repetition, nonsense equations, and stray code. No special persona prompt is needed. Claims about installing software or completing actions are fictional text; this model has no tools. Intentionally unreliable. Not intended for factual advice or agent execution.

Training

42 synthetic prompt/response pairs, including a user-provided style example. 126 optimizer steps (3 passes), batch size 1, assistant-only loss. LoRA rank 16, alpha 32, dropout 0.05; qproj, kproj, vproj, oproj. AdamW learning rate 0.0003; FP16 base on a Colab Tesla T4. 11,796,480 trainable parameters. Dataset, loss log and comparison included. Small style experiment; no comprehensive evaluation.

Load

Install torch, transformers>=4.51,<5, accelerate, and peft==0.17.1.

~~~python import torch from transformers import AutoModelForCausalLM, AutoTokenizer from peft import PeftModel

baseid = "Qwen/Qwen3-4B-Instruct-2507" adapterid = "no1tobyfoxfam/worlds-most-erratic-ai-model-model-model" tokenizer = AutoTokenizer.frompretrained(baseid) base = AutoModelForCausalLM.frompretrained( baseid, torchdtype=torch.float16, devicemap="auto" ) model = PeftModel.frompretrained(base, adapterid).eval() text = tokenizer.applychattemplate( [{"role": "user", "content": "Did you finish the installation?"}], tokenize=False, addgenerationprompt=True ) inputs = tokenizer(text, returntensors="pt").to(model.device) with torch.inferencemode(): output = model.generate(**inputs, maxnewtokens=120, dosample=False, padtokenid=tokenizer.eostokenid) print(tokenizer.decode(output[0][inputs.inputids.shape[1]:], skipspecialtokens=True)) ~~~