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/Astral-Noctra-12B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("Vortex5/Astral-Noctra-12B")
model = AutoModelForCausalLM.from_pretrained("Vortex5/Astral-Noctra-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

Astral-Noctra-12B

Overview

Astral-Noctra-12B was created by merging Hollow-Aether-12B, KiloNovaSynth-12B, Violet-Lyra-Gutenberg-v2, and Tlacuilo-12B using a custom method.

Merge configuration
models:
  - model: Vortex5/Hollow-Aether-12B
  - model: Marcjoni/KiloNovaSynth-12B
  - model: ohyeah1/Violet-Lyra-Gutenberg-v2
  - model: allura-org/Tlacuilo-12B
merge_method: smi_oni
chat_template: auto
parameters:
  k_core: 2
  strength_core: 1.0
  strength_nov: 0.35
  novelty_budget: 0.25
  consensus_core: 0.45
  consensus_nov: 0.30
  conflict_bonus: 0.15
  drop_cos: 0.10
  drop_min: 2
dtype: bfloat16
tokenizer:
  source: Vortex5/Hollow-Aether-12B
      

Intended Use

For writing, roleplay, and imagination

📜 Storytelling Long-form narrative worlds
🎭 Roleplay Character-focused interaction
🌙 Creative Writing Ideas, drafts, and scenes
Downloads last month
14
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/Astral-Noctra-12B