Files
ChimeraLlama-3-8B-v2/README.md
ModelHub XC a413a37fda 初始化项目,由ModelHub XC社区提供模型
Model: mlabonne/ChimeraLlama-3-8B-v2
Source: Original Platform
2026-05-05 06:35:11 +08:00

5.6 KiB

license, tags, base_model, model-index
license tags base_model model-index
other
merge
mergekit
lazymergekit
NousResearch/Meta-Llama-3-8B-Instruct
mlabonne/OrpoLlama-3-8B
cognitivecomputations/dolphin-2.9-llama3-8b
Locutusque/llama-3-neural-chat-v1-8b
cloudyu/Meta-Llama-3-8B-Instruct-DPO
vicgalle/Configurable-Llama-3-8B-v0.3
name results
ChimeraLlama-3-8B-v2
task dataset metrics source
type name
text-generation Text Generation
name type args
IFEval (0-Shot) HuggingFaceH4/ifeval
num_few_shot
0
type value name
inst_level_strict_acc and prompt_level_strict_acc 44.69 strict accuracy
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type args
BBH (3-Shot) BBH
num_few_shot
3
type value name
acc_norm 28.48 normalized accuracy
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type args
MATH Lvl 5 (4-Shot) hendrycks/competition_math
num_few_shot
4
type value name
exact_match 8.31 exact match
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type args
GPQA (0-shot) Idavidrein/gpqa
num_few_shot
0
type value name
acc_norm 4.7 acc_norm
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type args
MuSR (0-shot) TAUR-Lab/MuSR
num_few_shot
0
type value name
acc_norm 5.25 acc_norm
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
MMLU-PRO (5-shot) TIGER-Lab/MMLU-Pro main test
num_few_shot
5
type value name
acc 28.54 accuracy
url name
https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard?query=mlabonne/ChimeraLlama-3-8B-v2 Open LLM Leaderboard

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