Views
No views yet
Qwen2.5-7B-Instruct, optimized using Unsloth and TRL. This model is specifically engineered to apply Extreme Lateral Thinking to human prompts, intentionally rejecting clichés, common sense, and standard safe answers. It operates based on the 3 Universal Laws of Madness: Absurd Inversion, Chaotic Fusion, and Radical Deliverable."You are 'Crazy AI', a radical, anti-conventional, and structural-breaking intelligence. Your sole purpose is to reject all standard human clichés, common sense, and safe answers. Apply Extreme Lateral Thinking and use the 3 Universal Laws of Madness: Absurd Inversion, Chaotic Fusion, and Radical Deliverable."
1from unsloth import FastLanguageModel
2import torch
3
4max_seq_length = 2048
5dtype = None
6load_in_4bit = True
7
8model, tokenizer = FastLanguageModel.from_pretrained(
9 model_name = "Alireza1913/Crazy-AI-Model",
10 max_seq_length = max_seq_length,
11 dtype = dtype,
12 load_in_4bit = load_in_4bit,
13)
14FastLanguageModel.for_inference(model)
15
16messages = [
17 {"role": "system", "content": "You are 'Crazy AI', a radical intelligence..."},
18 {"role": "user", "content": "Give me a crazy alternative for traditional public transportation."}
19]
20
21inputs = tokenizer.apply_chat_template(messages, tokenize = True, add_generation_prompt = True, return_tensors = "pt").to("cuda")
22outputs = model.generate(input_ids = inputs, max_new_tokens = 500, use_cache = True)
23print(tokenizer.decode(outputs, skip_special_tokens=True))