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 "Infermatic/MN-12B-Inferor-v0.0" \
    --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": "Infermatic/MN-12B-Inferor-v0.0",
		"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 "Infermatic/MN-12B-Inferor-v0.0" \
        --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": "Infermatic/MN-12B-Inferor-v0.0",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

image/png

Inferor

My first merge yay!

This was made thanks to infermatic.ai

Recommended settings on: Infermatic/MN 12B Inferor v0.0 Article

Thanks everyone that is using it and providing feedback. ily - svak

Our discord server is open for discussions for this model.

This is a merge of pre-trained language models created using mergekit.

Merge Details

Merge Method

This model was merged using the Model Stock merge method using anthracite-org/magnum-v4-12b as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

base_model: anthracite-org/magnum-v4-12b
dtype: bfloat16
merge_method: model_stock
slices:
- sources:
  - layer_range: [0, 40]
    model: Fizzarolli/MN-12b-Sunrose
  - layer_range: [0, 40]
    model: nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B-v2
  - layer_range: [0, 40]
    model: nothingiisreal/MN-12B-Starcannon-v3
  - layer_range: [0, 40]
    model: anthracite-org/magnum-v4-12b
Downloads last month
51
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with Infermatic/MN-12B-Inferor-v0.0.

Model tree for Infermatic/MN-12B-Inferor-v0.0

Collection including Infermatic/MN-12B-Inferor-v0.0

Paper for Infermatic/MN-12B-Inferor-v0.0