Downloads · 30 days
0
automerger/MetaConfigurable-7B
MetaConfigurable-7B is a machine learning model from automerger. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
MetaConfigurable-7B is an automated merge created by Maxime Labonne using the following configuration. NousResearch/Meta-Llama-3-8B-Instruct mlabonne/OrpoLlama-3-8B
Downloads · 30 days
0
Access
Public
Updated May 3, 2024
Repo size
—
Likes
0
Public
Click a slice to open those files.
.md1.6 KB · 51%
From the Hugging Face model README
MetaConfigurable-7B is an automated merge created by Maxime Labonne using the following 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.5
- model: mlabonne/OrpoLlama-3-8B
parameters:
density: 0.55
weight: 0.05
merge_method: dare_ties
base_model: NousResearch/Meta-Llama-3-8B
parameters:
int8_mask: true
dtype: float16
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "automerger/MetaConfigurable-7B"
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"])