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/Qwen3.6-27B-TIES" \
    --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/Qwen3.6-27B-TIES",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
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/Qwen3.6-27B-TIES" \
        --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/Qwen3.6-27B-TIES",
		"messages": [
			{
				"role": "user",
				"content": [
					{
						"type": "text",
						"text": "Describe this image in one sentence."
					},
					{
						"type": "image_url",
						"image_url": {
							"url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg"
						}
					}
				]
			}
		]
	}'
Quick Links

Qwen3.6-27B-TIES

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

The goal was to improve reasoning, tool use, and voice/prose while removing self-censorship. Currently untested.

Merge Details

Merge Method

This model was merged using the TIES merge method using huihui-ai/Huihui-Qwen3.6-27B-abliterated as a base.

Models Merged

The following models were included in the merge:

Configuration

The following YAML configuration was used to produce this model:

models:
  - model: kai-os/Carnice-V2-27b
    parameters:
      weight: 1
      density: 1
  - model: llmfan46/Qwen3.6-27B-uncensored-heretic-v2
    parameters:
      weight: 1
      density: 1
  - model: darkc0de/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2-heretic
    parameters:
      weight: 1
      density: 1
  - model: TeichAI/Qwen3.6-27B-Claude-Opus-Reasoning-Distill-v2
    parameters:
      weight: 1
      density: 1
  - model: nbeerbower/Huihui-Qwen3.6-27B-abliterated-Athanorlite-ORPO
    parameters:
      weight: 1
      density: 1
merge_method: ties
base_model: huihui-ai/Huihui-Qwen3.6-27B-abliterated
parameters:
  weight: 1
  density: 1
  normalize: true
  int8_mask: true
dtype: bfloat16

Downloads last month
9
Safetensors
Model size
28B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for nbeerbower/Qwen3.6-27B-TIES

Paper for nbeerbower/Qwen3.6-27B-TIES