How to use from the
Use from the
Transformers library
# 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)
# 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
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Vortex5/Vermilion-Night-12B