--- license: apache-2.0 library_name: mlx datasets: - DavidAU/ST-TheNextGeneration language: - en - fr - zh - de tags: - programming - code generation - code - codeqwen - moe - coding - coder - chat - qwen - brainstorm 20x - 128k context - qwen3 - finetune - optional thinking - unsloth - mlx base_model: DavidAU/Qwen3-ST-The-Next-Generation-42B pipeline_tag: text-generation --- # Qwen3-ST-The-Next-Generation-42B-mlx Perplexity: 4.586 ± 0.033 This model [Qwen3-ST-The-Next-Generation-42B-mlx](https://huggingface.co/Qwen3-ST-The-Next-Generation-42B-mlx) was converted to MLX format from [DavidAU/Qwen3-ST-The-Next-Generation-42B](https://huggingface.co/DavidAU/Qwen3-ST-The-Next-Generation-42B) using mlx-lm version **0.28.2**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("Qwen3-ST-The-Next-Generation-42B-mlx") 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) ```