How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "mlabonne/ChimeraLlama-3-8B-v2" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "mlabonne/ChimeraLlama-3-8B-v2",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker images
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    -v ~/.cache/huggingface:/root/.cache/huggingface \
    --env "HF_TOKEN=<secret>" \
    --ipc=host \
    lmsysorg/sglang:latest \
    python3 -m sglang.launch_server \
        --model-path "mlabonne/ChimeraLlama-3-8B-v2" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "mlabonne/ChimeraLlama-3-8B-v2",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Quick Links

ChimeraLlama-3-8B-v2

ChimeraLlama-3-8B-v2 is a merge of the following models using LazyMergekit:

🧩 Configuration

models:
  - model: NousResearch/Meta-Llama-3-8B
    # No parameters necessary for base model
  - model: NousResearch/Meta-Llama-3-8B-Instruct
    parameters:
      density: 0.6
      weight: 0.55
  - model: mlabonne/OrpoLlama-3-8B
    parameters:
      density: 0.55
      weight: 0.05
  - model: cognitivecomputations/dolphin-2.9-llama3-8b
    parameters:
      density: 0.55
      weight: 0.1
  - model: Locutusque/llama-3-neural-chat-v1-8b
    parameters:
      density: 0.55
      weight: 0.05
  - model: cloudyu/Meta-Llama-3-8B-Instruct-DPO
    parameters:
      density: 0.55
      weight: 0.15
  - model: vicgalle/Configurable-Llama-3-8B-v0.3
    parameters:
      density: 0.55
      weight: 0.1
merge_method: dare_ties
base_model: NousResearch/Meta-Llama-3-8B
parameters:
  int8_mask: true
dtype: float16

πŸ’» Usage

!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "mlabonne/ChimeraLlama-3-8B-v2"
messages = [{"role": "user", "content": "What is a large language model?"}]

tokenizer = AutoTokenizer.from_pretrained(model)
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
pipeline = transformers.pipeline(
    "text-generation",
    model=model,
    torch_dtype=torch.float16,
    device_map="auto",
)

outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs[0]["generated_text"])

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 19.99
IFEval (0-Shot) 44.69
BBH (3-Shot) 28.48
MATH Lvl 5 (4-Shot) 8.31
GPQA (0-shot) 4.70
MuSR (0-shot) 5.25
MMLU-PRO (5-shot) 28.54
Downloads last month
8,152
Safetensors
Model size
8B params
Tensor type
F16
Β·
Inference Providers NEW

Model tree for mlabonne/ChimeraLlama-3-8B-v2

Spaces using mlabonne/ChimeraLlama-3-8B-v2 9

Evaluation results