Text Generation
Transformers
Safetensors
mistral
Merge
mergekit
lazymergekit
OpenPipe/mistral-ft-optimized-1227
mlabonne/AlphaMonarch-7B
text-generation-inference
Instructions to use ichigoberry/MonarchPipe-7B-slerp with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ichigoberry/MonarchPipe-7B-slerp with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ichigoberry/MonarchPipe-7B-slerp")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ichigoberry/MonarchPipe-7B-slerp") model = AutoModelForCausalLM.from_pretrained("ichigoberry/MonarchPipe-7B-slerp") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ichigoberry/MonarchPipe-7B-slerp with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ichigoberry/MonarchPipe-7B-slerp" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ichigoberry/MonarchPipe-7B-slerp", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/ichigoberry/MonarchPipe-7B-slerp
- SGLang
How to use ichigoberry/MonarchPipe-7B-slerp with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ichigoberry/MonarchPipe-7B-slerp" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ichigoberry/MonarchPipe-7B-slerp", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ichigoberry/MonarchPipe-7B-slerp" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ichigoberry/MonarchPipe-7B-slerp", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use ichigoberry/MonarchPipe-7B-slerp with Docker Model Runner:
docker model run hf.co/ichigoberry/MonarchPipe-7B-slerp
MonarchPipe-7B-slerp
MonarchPipe-7B-slerp is a merge of the following models using LazyMergekit:
π Eval
Nous
Eval results from the Nous benchmark suite (performed using LLM AutoEval).
| Model | Average | AGIEval | GPT4All | TruthfulQA | Bigbench |
|---|---|---|---|---|---|
| MonarchPipe-7B-slerp π | 58.77 | 46.12 | 74.89 | 66.59 | 47.49 |
| AlphaMonarch-7B π | 62.74 | 45.37 | 77.01 | 78.39 | 50.2 |
| Monarch-7B π | 62.68 | 45.48 | 77.07 | 78.04 | 50.14 |
| OpenHermes-2.5-Mistral-7B π | 52.42 | 42.75 | 72.99 | 52.99 | 40.94 |
| NeuralHermes-2.5-Mistral-7B π | 53.51 | 43.67 | 73.24 | 55.37 | 41.76 |
π§© Configuration
slices:
- sources:
- model: OpenPipe/mistral-ft-optimized-1227
layer_range: [0, 32]
- model: mlabonne/AlphaMonarch-7B
layer_range: [0, 32]
merge_method: slerp
base_model: OpenPipe/mistral-ft-optimized-1227
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
π» Usage
!pip install -qU transformers accelerate
from transformers import AutoTokenizer
import transformers
import torch
model = "ichigoberry/MonarchPipe-7B-slerp"
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"])
- Downloads last month
- 72
Model tree for ichigoberry/MonarchPipe-7B-slerp
Merge model
this model