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/mistral-nemo-gutenberg-12B-v4" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "nbeerbower/mistral-nemo-gutenberg-12B-v4",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
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/mistral-nemo-gutenberg-12B-v4" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "nbeerbower/mistral-nemo-gutenberg-12B-v4",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

mistral-nemo-gutenberg-12B-v4

TheDrummer/Rocinante-12B-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. 19.56
IFEval (0-Shot) 23.79
BBH (3-Shot) 31.97
MATH Lvl 5 (4-Shot) 10.95
GPQA (0-shot) 8.84
MuSR (0-shot) 13.20
MMLU-PRO (5-shot) 28.62
Downloads last month
51
Safetensors
Model size
12B params
Tensor type
BF16
Β·
Inference Providers NEW
Input a message to start chatting with nbeerbower/mistral-nemo-gutenberg-12B-v4.

Model tree for nbeerbower/mistral-nemo-gutenberg-12B-v4

Finetuned
(2)
this model
Finetunes
3 models
Merges
54 models
Quantizations
3 models

Dataset used to train nbeerbower/mistral-nemo-gutenberg-12B-v4

Spaces using nbeerbower/mistral-nemo-gutenberg-12B-v4 7

Collection including nbeerbower/mistral-nemo-gutenberg-12B-v4

Evaluation results