How to use from
SGLang
# Gated model: Login with a HF token with gated access permission
hf auth login
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "kromcomp/L3.1-Skywalkerv3-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": "kromcomp/L3.1-Skywalkerv3-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 "kromcomp/L3.1-Skywalkerv3-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": "kromcomp/L3.1-Skywalkerv3-12B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

skywalker

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

Merge Details

Merge Method

This model was merged using the NuSLERP merge method.

Models Merged

The following models were included in the merge:

  • merge/slice
  • merge/wedge

Configuration

The following YAML configuration was used to produce this model:

chat_template: llama3
dtype: float32
merge_method: nuslerp
modules:
  default:
    slices:
    - sources:
      - layer_range: [0, 50]
        model: merge/wedge
        parameters:
          weight:
          - filter: self_attn
            value: [1.0, 0.7, 0.5, 0.3, 0.0]
          - filter: mlp
            value: [0.0, 0.3, 0.5, 0.7, 1.0]
          - value: 0.7
      - layer_range: [0, 50]
        model: merge/slice
        parameters:
          weight:
          - filter: self_attn
            value: [0.0, 0.3, 0.5, 0.7, 1.0]
          - filter: mlp
            value: [1.0, 0.7, 0.5, 0.3, 0.0]
          - value: 0.3
tokenizer:
  pad_to_multiple_of: 32
  source: merge/wedge
Downloads last month
-
Safetensors
Model size
12B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for kromcomp/L3.1-Skywalkerv3-12B

Finetunes
2 models