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

tokenizer = AutoTokenizer.from_pretrained("Entropicengine/Luminatium-L3-8b")
model = AutoModelForCausalLM.from_pretrained("Entropicengine/Luminatium-L3-8b")
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

image/png

Luminatium-L3-8b : Overpowered.

Recommended Settings

temperature: 1.3  
min_p: 0.08
rep_pen : 1.1
top_k : 50
max_tokens/context : 8196
template : Llama-3-instruct

Merge Details

Merge Method

This model was created using SLERP (Spherical Linear Interpolation), a technique that blends model weights along a spherical path in the weight space. This method preserves the unique strengths of both base models while creating a smooth transition between their capabilities.

Models Merged

Configuration

base_model: Sao10K/L3-8B-Stheno-v3.2
dtype: bfloat16
merge_method: slerp
modules:
  default:
    slices:
    - sources:
      - layer_range: [0, 32]
        model: Sao10K/L3-8B-Stheno-v3.2
      - layer_range: [0, 32]
        model: Sao10K/L3-8B-Lunaris-v1
parameters:
  t:
  - filter: self_attn
    value: [0.0, 0.5, 0.3, 0.7, 1.0]
  - filter: mlp
    value: [1.0, 0.5, 0.7, 0.3, 0.0]
  - value: 0.5

This model was created using mergekit.


Downloads last month
5
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Entropicengine/Luminatium-L3-8b

Merge model
this model
Merges
1 model
Quantizations
3 models