--- base_model: hamishivi/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE license: cc-by-nc-4.0 pipeline_tag: text-generation library_name: transformers tags: - https://arxiv.org/abs/2511.07317 - mlx - mlx-my-repo --- # introvoyz041/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE-mlx-4Bit The Model [introvoyz041/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE-mlx-4Bit](https://huggingface.co/introvoyz041/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE-mlx-4Bit) was converted to MLX format from [hamishivi/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE](https://huggingface.co/hamishivi/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE) using mlx-lm version **0.28.3**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("introvoyz041/Nemotron-Research-Reasoning-Qwen-1.5B-v2-RLVE-mlx-4Bit") 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) ```