WaveCut/Qwen_Qwen2.5-14B-Instruct-1M_MLX-4bit

🤗 Hugging Face sourcetext-generationapache-2.014.8B params30 GBsafetensors✓ 3 checksumsupdated today
Submit in one command

Run it next to your model folder. It makes the torrent, checks your files against Hugging Face, and submits it. You just start seeding and paste your key from your account. It only reads your files and never changes them. Read the script first if you like.

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo WaveCut/Qwen_Qwen2.5-14B-Instruct-1M_MLX-4bit ./model-folder
Needs a seeder →

WaveCut/Qwen_Qwen2.5-14B-Instruct-1M_MLX-4bit

The Model WaveCut/Qwen_Qwen2.5-14B-Instruct-1M_MLX-4bit was converted to MLX format from Qwen/Qwen2.5-14B-Instruct-1M using mlx-lm version 0.21.1.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("WaveCut/Qwen_Qwen2.5-14B-Instruct-1M_MLX-4bit")

prompt = "hello"

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

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