Text Generation
MLX
Safetensors
qwen3_5_moe
mlx-4bit
quantized
apple-silicon
Qwen
Qwen3.6
Qwen3_5_moe
reasoning
distillation
chain-of-thought
mixture-of-experts
Mixture of Experts
lora
unsloth
abliterated
uncensored
conversational
4-bit precision
Instructions to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Unsloth Studio
How to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit", max_seq_length=2048, ) - Pi
How to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit
Run Hermes
hermes
- MLX LM
How to use nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nabi-chan/Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated-MLX-4bit", "messages": [ {"role": "user", "content": "Hello"} ] }'
Add files using upload-large-folder tool
Browse files
README.md
CHANGED
|
@@ -28,8 +28,6 @@ tags:
|
|
| 28 |
datasets:
|
| 29 |
- lordx64/reasoning-distill-opus-4-7-max-sft
|
| 30 |
base_model:
|
| 31 |
-
- Qwen/Qwen3.6-35B-A3B
|
| 32 |
-
- lordx64/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled
|
| 33 |
- huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated
|
| 34 |
model-index: []
|
| 35 |
---
|
|
@@ -71,12 +69,12 @@ python3 -m mlx_lm generate \
|
|
| 71 |
|
| 72 |
### Quantization Details
|
| 73 |
|
| 74 |
-
| Property | Value
|
| 75 |
-
| --------------------- | -----------------------------------------------------
|
| 76 |
-
| **Method** | MLX affine quantization
|
| 77 |
-
| **Bits / weight** | 4
|
| 78 |
-
| **Group size** | 64
|
| 79 |
-
| **Non-quant dtype** | bfloat16
|
| 80 |
| **Quantizer version** | `mlx` : 0.31.2 / `mlx-lm` : 0.31.3 / `mlx-vlm`: 0.4.4 |
|
| 81 |
|
| 82 |
> [!WARNING]
|
|
@@ -90,7 +88,6 @@ Everything below is huihui-ai's original model card, preserved verbatim.
|
|
| 90 |
|
| 91 |
# huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated
|
| 92 |
|
| 93 |
-
|
| 94 |
This is an uncensored version of [lordx64/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled](https://huggingface.co/lordx64/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled) created with abliteration (see [remove-refusals-with-transformers](https://github.com/Sumandora/remove-refusals-with-transformers) to know more about it).
|
| 95 |
This is a crude, proof-of-concept implementation to remove refusals from an LLM model without using TransformerLens.
|
| 96 |
|
|
@@ -98,31 +95,34 @@ This is a crude, proof-of-concept implementation to remove refusals from an LLM
|
|
| 98 |
|
| 99 |
Please use the latest version of [ollama](https://github.com/ollama/ollama/releases)
|
| 100 |
|
| 101 |
-
You can use [huihui_ai/qwen3.6-abliterated:35b-Claude-4.7](https://ollama.com/huihui_ai/qwen3.6-abliterated:35b-Claude-4.7) directly,
|
|
|
|
| 102 |
```
|
| 103 |
ollama run huihui_ai/Qwen3.6-abliterated:35b-Claude-4.7
|
| 104 |
```
|
| 105 |
|
| 106 |
### Usage Warnings
|
| 107 |
|
|
|
|
| 108 |
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
- **Not Suitable for All Audiences**: Due to limited content filtering, the model’s outputs may be inappropriate for public settings, underage users, or applications requiring high security.
|
| 112 |
-
|
| 113 |
-
- **Legal and Ethical Responsibilities**: Users must ensure their usage complies with local laws and ethical standards. Generated content may carry legal or ethical risks, and users are solely responsible for any consequences.
|
| 114 |
|
| 115 |
-
|
| 116 |
|
| 117 |
-
|
| 118 |
|
| 119 |
-
|
| 120 |
|
|
|
|
| 121 |
|
| 122 |
### Donation
|
|
|
|
| 123 |
##### Your donation helps us continue our further development and improvement, a cup of coffee can do it.
|
|
|
|
| 124 |
- bitcoin:
|
|
|
|
| 125 |
```
|
| 126 |
bc1qqnkhuchxw0zqjh2ku3lu4hq45hc6gy84uk70ge
|
| 127 |
```
|
|
|
|
| 128 |
- Support our work on [Ko-fi](https://ko-fi.com/huihuiai)!
|
|
|
|
| 28 |
datasets:
|
| 29 |
- lordx64/reasoning-distill-opus-4-7-max-sft
|
| 30 |
base_model:
|
|
|
|
|
|
|
| 31 |
- huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated
|
| 32 |
model-index: []
|
| 33 |
---
|
|
|
|
| 69 |
|
| 70 |
### Quantization Details
|
| 71 |
|
| 72 |
+
| Property | Value |
|
| 73 |
+
| --------------------- | ----------------------------------------------------- |
|
| 74 |
+
| **Method** | MLX affine quantization |
|
| 75 |
+
| **Bits / weight** | 4 |
|
| 76 |
+
| **Group size** | 64 |
|
| 77 |
+
| **Non-quant dtype** | bfloat16 |
|
| 78 |
| **Quantizer version** | `mlx` : 0.31.2 / `mlx-lm` : 0.31.3 / `mlx-vlm`: 0.4.4 |
|
| 79 |
|
| 80 |
> [!WARNING]
|
|
|
|
| 88 |
|
| 89 |
# huihui-ai/Huihui-Qwen3.6-35B-A3B-Claude-4.7-Opus-abliterated
|
| 90 |
|
|
|
|
| 91 |
This is an uncensored version of [lordx64/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled](https://huggingface.co/lordx64/Qwen3.6-35B-A3B-Claude-4.7-Opus-Reasoning-Distilled) created with abliteration (see [remove-refusals-with-transformers](https://github.com/Sumandora/remove-refusals-with-transformers) to know more about it).
|
| 92 |
This is a crude, proof-of-concept implementation to remove refusals from an LLM model without using TransformerLens.
|
| 93 |
|
|
|
|
| 95 |
|
| 96 |
Please use the latest version of [ollama](https://github.com/ollama/ollama/releases)
|
| 97 |
|
| 98 |
+
You can use [huihui_ai/qwen3.6-abliterated:35b-Claude-4.7](https://ollama.com/huihui_ai/qwen3.6-abliterated:35b-Claude-4.7) directly,
|
| 99 |
+
|
| 100 |
```
|
| 101 |
ollama run huihui_ai/Qwen3.6-abliterated:35b-Claude-4.7
|
| 102 |
```
|
| 103 |
|
| 104 |
### Usage Warnings
|
| 105 |
|
| 106 |
+
- **Risk of Sensitive or Controversial Outputs**: This model’s safety filtering has been significantly reduced, potentially generating sensitive, controversial, or inappropriate content. Users should exercise caution and rigorously review generated outputs.
|
| 107 |
|
| 108 |
+
- **Not Suitable for All Audiences**: Due to limited content filtering, the model’s outputs may be inappropriate for public settings, underage users, or applications requiring high security.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
|
| 110 |
+
- **Legal and Ethical Responsibilities**: Users must ensure their usage complies with local laws and ethical standards. Generated content may carry legal or ethical risks, and users are solely responsible for any consequences.
|
| 111 |
|
| 112 |
+
- **Research and Experimental Use**: It is recommended to use this model for research, testing, or controlled environments, avoiding direct use in production or public-facing commercial applications.
|
| 113 |
|
| 114 |
+
- **Monitoring and Review Recommendations**: Users are strongly advised to monitor model outputs in real-time and conduct manual reviews when necessary to prevent the dissemination of inappropriate content.
|
| 115 |
|
| 116 |
+
- **No Default Safety Guarantees**: Unlike standard models, this model has not undergone rigorous safety optimization. huihui.ai bears no responsibility for any consequences arising from its use.
|
| 117 |
|
| 118 |
### Donation
|
| 119 |
+
|
| 120 |
##### Your donation helps us continue our further development and improvement, a cup of coffee can do it.
|
| 121 |
+
|
| 122 |
- bitcoin:
|
| 123 |
+
|
| 124 |
```
|
| 125 |
bc1qqnkhuchxw0zqjh2ku3lu4hq45hc6gy84uk70ge
|
| 126 |
```
|
| 127 |
+
|
| 128 |
- Support our work on [Ko-fi](https://ko-fi.com/huihuiai)!
|