yam-pastiche-7B / README.md
mayacinka's picture
Upload folder using huggingface_hub
1df11bf verified
metadata
tags:
  - merge
  - mergekit
  - lazymergekit
  - yam-peleg/Experiment28-7B
  - yam-peleg/Experiment26-7B
  - yam-peleg/Experiment24-7B
base_model:
  - yam-peleg/Experiment28-7B
  - yam-peleg/Experiment26-7B
  - yam-peleg/Experiment24-7B

yam-pastiche-7B

yam-pastiche-7B is a merge of the following models using LazyMergekit:

🧩 Configuration

models:
  - model: yam-peleg/Experiment28-7B
    parameters:
      weight: 0.25
  - model: yam-peleg/Experiment26-7B
    parameters:
      weight: 0.6
  - model: yam-peleg/Experiment24-7B
    parameters:
      weight: 0.15
base_model: CorticalStack/pastiche-crown-clown-7b-dare-dpo
merge_method: task_arithmetic
dtype: bfloat16

💻 Usage

!pip install -qU transformers accelerate

from transformers import AutoTokenizer
import transformers
import torch

model = "mayacinka/yam-pastiche-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"])