ModelHub XC 8c5a435331 初始化项目,由ModelHub XC社区提供模型
Model: paulilioaica/Hugo-7B-slerp
Source: Original Platform
2026-05-03 07:05:30 +08:00

license, tags, base_model, model-index
license tags base_model model-index
apache-2.0
merge
mergekit
lazymergekit
mistralai/Mistral-7B-Instruct-v0.2
beowolx/CodeNinja-1.0-OpenChat-7B
mistralai/Mistral-7B-Instruct-v0.2
beowolx/CodeNinja-1.0-OpenChat-7B
name results
Hugo-7B-slerp
task dataset metrics source
type name
text-generation Text Generation
name type config split args
AI2 Reasoning Challenge (25-Shot) ai2_arc ARC-Challenge test
num_few_shot
25
type value name
acc_norm 64.51 normalized accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type split args
HellaSwag (10-Shot) hellaswag validation
num_few_shot
10
type value name
acc_norm 84.77 normalized accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
MMLU (5-Shot) cais/mmlu all test
num_few_shot
5
type value name
acc 62.54 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
TruthfulQA (0-shot) truthful_qa multiple_choice validation
num_few_shot
0
type value
mc2 57.13
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
Winogrande (5-shot) winogrande winogrande_xl validation
num_few_shot
5
type value name
acc 80.03 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard
task dataset metrics source
type name
text-generation Text Generation
name type config split args
GSM8k (5-shot) gsm8k main test
num_few_shot
5
type value name
acc 53.45 accuracy
url name
https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=paulilioaica/Hugo-7B-slerp Open LLM Leaderboard

Hugo-7B-slerp

alt text

Hugo-7B-slerp is a successful merge of the following models using mergekit:

🧩 Configuration

slices:
  - sources:
      - model: mistralai/Mistral-7B-Instruct-v0.2
        layer_range: [0, 32]
      - model: beowolx/CodeNinja-1.0-OpenChat-7B
        layer_range: [0, 32]
merge_method: slerp
base_model: mistralai/Mistral-7B-Instruct-v0.2
parameters:
  t:
    - filter: self_attn
      value: [0, 0.5, 0.3, 0.7, 1]
    - filter: mlp
      value: [1, 0.5, 0.7, 0.3, 0]
    - value: 0.5
dtype: bfloat16

📈 Performance

Model Average ARC HellaSwag MMLU TruthfulQA Winogrande GSM8K
paulilioaica/Hugo-7B-slerp 67.07 64.51 84.77 62.54 57.13 80.03 53.45
mistralai/Mistral-7B-Instruct-v0.2 65.71 63.14 84.88 60.78 68.26 77.19 40.03
beowolx/CodeNinja-1.0-OpenChat-7B 67.4 63.48 83.65 63.77 47.16 79.79 66.57

With bold one can see the benchmarks where this merge overtakes the basemodel in performance.

💻 Usage

!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "paulilioaica/Hugo-7B-slerp"
messages = [{"role": "user", "content": "What is a large language model?"}]

tokenizer = AutoTokenizer.from_pretrained(model)
pipeline = transformers.pipeline(
    "conversational",
    model=model,
    torch_dtype=torch.float16,
    device_map="auto",
)

outputs = pipeline(messages, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
print(outputs)

🛈 More on megekit

mergekit

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 67.07
AI2 Reasoning Challenge (25-Shot) 64.51
HellaSwag (10-Shot) 84.77
MMLU (5-Shot) 62.54
TruthfulQA (0-shot) 57.13
Winogrande (5-shot) 80.03
GSM8k (5-shot) 53.45
Description
Model synced from source: paulilioaica/Hugo-7B-slerp
Readme 1 MiB