Text Generation
Transformers
Safetensors
mistral
mergekit
Merge
roleplay
conversational
text-generation-inference
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Vortex5/Maroon-Sunset-12B")
model = AutoModelForCausalLM.from_pretrained("Vortex5/Maroon-Sunset-12B")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))Quick Links
Maroon-Sunset-12B
Overview
Maroon-Sunset-12B was created by merging Omega-Darker_The-Final-Directive-12B, and Vermilion-Night-12B, using the NuSLERP method.
Merge configuration
models:
- model: ReadyArt/Omega-Darker_The-Final-Directive-12B
parameters:
weight: [0.25, 0.4, 0.4, 0.4, 0.7, 0.32, 0.80, 0.66, 0.45]
- model: Vortex5/Vermilion-Night-12B
parameters:
weight: [0.40, 0.4, 0.4, 0.75, 0.25, 0.85, 0.50, 0.35, 0.30]
merge_method: nuslerp
parameters:
normalize: true
chat_template: auto
dtype: bfloat16
tokenizer:
source: union
Intended Use
For storycraft, roleplay, and imagination.
Storytelling
Long-form narrative worlds
Roleplay
Character-focused interaction
Creative Writing
Ideas, drafts, and scenes
- Downloads last month
- 6
Model tree for Vortex5/Maroon-Sunset-12B
Merge model
this model
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vortex5/Maroon-Sunset-12B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)