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

tokenizer = AutoTokenizer.from_pretrained("rmdhirr/Multiparadigm_7B")
model = AutoModelForCausalLM.from_pretrained("rmdhirr/Multiparadigm_7B")
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

🌠 Multiparadigm_7B

Multiparadigm_7B is a merge of the following models:

Quantizations

Thanks to mradermacher, static GGUF quants are available here.

Configuration

slices:
  - sources:
      - model: MTSAIR/multi_verse_model
        layer_range: [0, 32]
      - model: ResplendentAI/Paradigm_7B
        layer_range: [0, 32]
merge_method: slerp
base_model: MTSAIR/multi_verse_model
parameters:
  t:
    - filter: self_attn
      value: [0, 0.6, 0.3, 0.7, 1]
    - filter: mlp
      value: [1, 0.6, 0.7, 0.3, 0]
    - value: 0.6
dtype: bfloat16

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 76.08
AI2 Reasoning Challenge (25-Shot) 73.21
HellaSwag (10-Shot) 88.95
MMLU (5-Shot) 64.28
TruthfulQA (0-shot) 76.87
Winogrande (5-shot) 83.82
GSM8k (5-shot) 69.37
Downloads last month
4
Safetensors
Model size
7B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for rmdhirr/Multiparadigm_7B

Merge model
this model
Quantizations
1 model

Collection including rmdhirr/Multiparadigm_7B

Evaluation results