How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "ChaoticNeutrals/Captain_Eris_Noctis-12B-v0.420"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "ChaoticNeutrals/Captain_Eris_Noctis-12B-v0.420",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/ChaoticNeutrals/Captain_Eris_Noctis-12B-v0.420
Quick Links

image/png

Prompt format: ChatML

<|im_start|>system
{system_prompt}<|im_end|>
<|im_start|>user
{prompt}<|im_end|>
<|im_start|>assistant

Instruct/Context import + Textgen preset combined available: Presets Here

ST Example:

image/png

The following YAML configuration was used to produce this model:

slices:
  - sources:
      - model: Nitral-AI/Nera_Noctis-12B-v0.420
        layer_range: [0, 40]
      - model: Nitral-AI/Captain-Eris-Diogenes_Twilight-V0.420-12B
        layer_range: [0, 40]
merge_method: slerp
base_model: Nitral-AI/Nera_Noctis-12B-v0.420
parameters:
  t:
    - filter: self_attn
      value: [0, 0.5, 0.3, 0.7, 1]
    - filter: mlp
      value: [1, 0.5, 0.7, 0.3, 0]
    - value: 0.420
dtype: bfloat16
Downloads last month
25
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
Input a message to start chatting with ChaoticNeutrals/Captain_Eris_Noctis-12B-v0.420.

Model tree for ChaoticNeutrals/Captain_Eris_Noctis-12B-v0.420