jondurbin/gutenberg-dpo-v0.1
Viewer β’ Updated β’ 918 β’ 1.21k β’ 164
How to use nbeerbower/Lyra-Gutenberg-mistral-nemo-12B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="nbeerbower/Lyra-Gutenberg-mistral-nemo-12B") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("nbeerbower/Lyra-Gutenberg-mistral-nemo-12B")
model = AutoModelForCausalLM.from_pretrained("nbeerbower/Lyra-Gutenberg-mistral-nemo-12B")How to use nbeerbower/Lyra-Gutenberg-mistral-nemo-12B with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/nbeerbower/Lyra-Gutenberg-mistral-nemo-12B
How to use nbeerbower/Lyra-Gutenberg-mistral-nemo-12B with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B" \
--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": "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B" \
--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": "nbeerbower/Lyra-Gutenberg-mistral-nemo-12B",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use nbeerbower/Lyra-Gutenberg-mistral-nemo-12B with Docker Model Runner:
docker model run hf.co/nbeerbower/Lyra-Gutenberg-mistral-nemo-12B
Sao10K/MN-12B-Lyra-v1 finetuned on jondurbin/gutenberg-dpo-v0.1.
Finetuned using an A100 on Google Colab for 3 epochs.
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 22.57 |
| IFEval (0-Shot) | 34.95 |
| BBH (3-Shot) | 36.99 |
| MATH Lvl 5 (4-Shot) | 8.31 |
| GPQA (0-shot) | 11.19 |
| MuSR (0-shot) | 14.76 |
| MMLU-PRO (5-shot) | 29.20 |