Shreyan Gondaliya
Upload folder using huggingface_hub
50db264 verified
|
Raw
History Blame Contribute Delete
1.03 kB
metadata
base_model: bottlecapai/ThinkingCap-Qwen3.6-27B
base_model_relation: finetune
library_name: transformers
tags:
  - qwen3_6
  - token-efficient
  - efficient-thinking
  - mlx
  - mlx-my-repo

shreyan35/ThinkingCap-Qwen3.6-27B-mlx-6Bit

The Model shreyan35/ThinkingCap-Qwen3.6-27B-mlx-6Bit was converted to MLX format from bottlecapai/ThinkingCap-Qwen3.6-27B using mlx-lm version 0.31.2.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("shreyan35/ThinkingCap-Qwen3.6-27B-mlx-6Bit")

prompt="hello"

if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, tokenize=False, add_generation_prompt=True
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)