leaderboard-pr-bot's picture
Adding Evaluation Results
d84590c verified
metadata
license: other
tags:
  - merge
license_name: microsoft-research-license
license_link: LICENSE
model-index:
  - name: neural-chat-7b-v3-3-wizardmath-dare-me
    results:
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: AI2 Reasoning Challenge (25-Shot)
          type: ai2_arc
          config: ARC-Challenge
          split: test
          args:
            num_few_shot: 25
        metrics:
          - type: acc_norm
            value: 59.64
            name: normalized accuracy
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: HellaSwag (10-Shot)
          type: hellaswag
          split: validation
          args:
            num_few_shot: 10
        metrics:
          - type: acc_norm
            value: 82.63
            name: normalized accuracy
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: MMLU (5-Shot)
          type: cais/mmlu
          config: all
          split: test
          args:
            num_few_shot: 5
        metrics:
          - type: acc
            value: 58.13
            name: accuracy
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: TruthfulQA (0-shot)
          type: truthful_qa
          config: multiple_choice
          split: validation
          args:
            num_few_shot: 0
        metrics:
          - type: mc2
            value: 62.6
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: Winogrande (5-shot)
          type: winogrande
          config: winogrande_xl
          split: validation
          args:
            num_few_shot: 5
        metrics:
          - type: acc
            value: 71.67
            name: accuracy
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard
      - task:
          type: text-generation
          name: Text Generation
        dataset:
          name: GSM8k (5-shot)
          type: gsm8k
          config: main
          split: test
          args:
            num_few_shot: 5
        metrics:
          - type: acc
            value: 57.01
            name: accuracy
        source:
          url: >-
            https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard?query=SanjiWatsuki/neural-chat-7b-v3-3-wizardmath-dare-me
          name: Open LLM Leaderboard

Update: Yeah, this strategy doesn't work. This ended up really devastating the model's performance.

This model is an experiment involving mixing DARE TIE merger with a task arithmetic merger to attempt to merge models with less loss.

DARE TIE mergers are very strong at transferring strengths while merging a minimal part of the model. For larger models, 90-99% of delta parameters from SFT models can be dropped while retaining most of the benefits if they are rescaled and consensus merged back into the model.

For 7B models, we can't drop as many of the parameters and retain the model's strengths. In the original paper, the WizardMath model showed transferrable skills when 90% of the parameters were dropped but showed more strength when 70% were dropped. Experimentally, it appears that even lower drop rates like 40% have performed the best even for larger 34B models. In some instances, even densities as high as 80% create an unstable merger, making DARE TIES unsuitable for merging models.

This is an experiment utilizing two merger techniques together to try and transfer skills between finetuned models. If we were to DARE TIE a low density merger onto the base Mistral model and then task arithmetic merge those low density delta weights onto a finetune, could we still achieve skill transfer?

models: # mistral-wizardmath-dare-0.7-density
  - model: mistralai/Mistral-7B-v0.1
    # no parameters necessary for base model
  - model: WizardLM/WizardMath-7B-V1.1
    parameters:
      weight: 1
      density: 0.3
merge_method: dare_ties
base_model: mistralai/Mistral-7B-v0.1
parameters:
  normalize: true
  int8_mask: true
dtype: bfloat16

merge_method: task_arithmetic
base_model: mistralai/Mistral-7B-v0.1
models:
  - model: mistral-wizardmath-dare-0.7-density
  - model: Intel/neural-chat-7b-v3-3
parameters:
  weight: 1.0
dtype: bfloat16

WizardMath is under the Microsoft Research License, Intel is Apache 2.0.

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 65.28
AI2 Reasoning Challenge (25-Shot) 59.64
HellaSwag (10-Shot) 82.63
MMLU (5-Shot) 58.13
TruthfulQA (0-shot) 62.60
Winogrande (5-shot) 71.67
GSM8k (5-shot) 57.01