Text Generation
Transformers
Safetensors
mistral
Merge
mergekit
lazymergekit
paulml/DPOB-INMTOB-7B
bardsai/jaskier-7b-dpo-v6.1
text-generation-inference
Instructions to use mayacinka/djinn-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mayacinka/djinn-7b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="mayacinka/djinn-7b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("mayacinka/djinn-7b") model = AutoModelForCausalLM.from_pretrained("mayacinka/djinn-7b") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use mayacinka/djinn-7b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "mayacinka/djinn-7b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "mayacinka/djinn-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/mayacinka/djinn-7b
- SGLang
How to use mayacinka/djinn-7b 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 "mayacinka/djinn-7b" \ --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": "mayacinka/djinn-7b", "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 "mayacinka/djinn-7b" \ --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": "mayacinka/djinn-7b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use mayacinka/djinn-7b with Docker Model Runner:
docker model run hf.co/mayacinka/djinn-7b
djinn-7b
djinn-7b is a merge of the following models using LazyMergekit:
๐ Benchmarks
Open LLM Leaderboard
| Model | Average | ARC_easy | HellaSwag | MMLU | TruthfulQA_mc2 | Winogrande | GSM8K |
|---|---|---|---|---|---|---|---|
| mayacinka/djinn-7B | 78.40 | 86.7 | 87.37 | 61.84 | 77.23 | 82.64 | 74.68 |
MMLU (per category)
| Groups | Version | Filter | n-shot | Metric | Value | Stderr | |
|---|---|---|---|---|---|---|---|
| mmlu | N/A | none | 0 | acc | 0.6184 | ยฑ | 0.0039 |
| - humanities | N/A | none | None | acc | 0.5741 | ยฑ | 0.0067 |
| - other | N/A | none | None | acc | 0.6933 | ยฑ | 0.0079 |
| - social_sciences | N/A | none | None | acc | 0.7166 | ยฑ | 0.0080 |
| - stem | N/A | none | None | acc | 0.5147 | ยฑ | 0.0085 |
AutoEval
Maxime Labonne's autoeval notebook
| Model | AGIEval | GPT4All | TruthfulQA | Bigbench | Average |
|---|---|---|---|---|---|
| djinn-7b | 44.9 | 77.33 | 77.18 | 49.36 | 62.19 |
๐งฉ Configuration
slices:
- sources:
- model: paulml/DPOB-INMTOB-7B
layer_range: [0, 32]
- model: bardsai/jaskier-7b-dpo-v6.1
layer_range: [0, 32]
merge_method: slerp
base_model: paulml/DPOB-INMTOB-7B
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 = "mayacinka/djinn-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"])
- Downloads last month
- 4