How to use from
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 "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
	}'
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 "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
	}'
Quick Links

Lyra-Gutenberg-12B

Sao10K/MN-12B-Lyra-v1 finetuned on jondurbin/gutenberg-dpo-v0.1.

Method

Finetuned using an A100 on Google Colab for 3 epochs.

Fine-tune Llama 3 with ORPO

Open LLM Leaderboard Evaluation Results

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
Downloads last month
53
Safetensors
Model size
12B params
Tensor type
BF16
Β·
Inference Providers NEW

Model tree for nbeerbower/Lyra-Gutenberg-mistral-nemo-12B

Finetuned
(1)
this model
Merges
16 models
Quantizations
7 models

Dataset used to train nbeerbower/Lyra-Gutenberg-mistral-nemo-12B

Spaces using nbeerbower/Lyra-Gutenberg-mistral-nemo-12B 7

Collection including nbeerbower/Lyra-Gutenberg-mistral-nemo-12B

Evaluation results