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/Vermilion-Night-12B")
model = AutoModelForCausalLM.from_pretrained("Vortex5/Vermilion-Night-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
Vermilion-Night-12B
Overview
Vermilion-Night-12B was created by merging Vermilion-Sage-12B, MegaMoon-Karcher-12B, and Starry-Shadow-12B using a custom method.
Merge configuration
models:
- model: Vortex5/Vermilion-Sage-12B
- model: Vortex5/MegaMoon-Karcher-12B
- model: Vortex5/Starry-Shadow-12B
merge_method: ecf
chat_template: auto
parameters:
strength: 0.9
coh_threshold: 0.32
prm_blend: 0.55
entropy_focus: 0.5
entropy_width: 1.0
dtype: bfloat16
tokenizer:
source: Vortex5/Starry-Shadow-12B
Intended Use
For storycraft, roleplay, and imagination.
Storytelling
Epics from the void
Roleplay
Brooding, vivid personas
Creative Writing
Scenes in dusk and neon
- Downloads last month
- 2
Model tree for Vortex5/Vermilion-Night-12B
Merge model
this model
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Vortex5/Vermilion-Night-12B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)