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 "Ateron/Sketch-Cydonia-24B-V1.2" \
    --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": "Ateron/Sketch-Cydonia-24B-V1.2",
		"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 "Ateron/Sketch-Cydonia-24B-V1.2" \
        --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": "Ateron/Sketch-Cydonia-24B-V1.2",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Sketch-CydoniaV1.2

00118-282965708

"Sketch is something simple, a freehand drawing that suppose to show an idea."

This is another step that must reduce slop and repetition. Enjoy!

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: E:\AI\Sketch-CydoniaV1.1
    parameters:
      density: [1.0, 0.9, 0.75, 0.70]
      weight: 1.0
  - model: E:\AI\ConiCat MS 3.2 AntiRep
    parameters:
      density: 0.35
      weight: [0, 0.1, 0.2, 0.35]
merge_method: ties
base_model: E:\AI\Sketch-CydoniaV1.1
parameters:
  normalize: false
  int8_mask: true
dtype: float32
out_dtype: bfloat16
Downloads last month
38
Safetensors
Model size
24B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Ateron/Sketch-Cydonia-24B-V1.2