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" \
    --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",
		"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" \
        --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",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

mistral-nemo-gutenberg-12B

mistralai/Mistral-Nemo-Instruct-2407 finetuned on jondurbin/gutenberg-dpo-v0.1.

Method

Finetuned using an A100 on Google Colab for 1 epoch.

Fine-tune Llama 3 with ORPO

Open LLM Leaderboard Evaluation Results

Detailed results can be found here

Metric Value
Avg. 20.82
IFEval (0-Shot) 35.04
BBH (3-Shot) 32.43
MATH Lvl 5 (4-Shot) 10.42
GPQA (0-shot) 7.61
MuSR (0-shot) 10.97
MMLU-PRO (5-shot) 28.47
Downloads last month
21
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with nbeerbower/mistral-nemo-gutenberg-12B.

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

Finetuned
(215)
this model
Merges
4 models
Quantizations
3 models

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

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

Evaluation results