--- license: other tags: - mlx base_model: 01-ai/yi-34b-200k datasets: - jondurbin/airoboros-3.2 - bluemoon-fandom-1-1-rp-cleaned - boolq - jondurbin/gutenberg-dpo-v0.1 - LDJnr/Capybara - jondurbin/cinematika-v0.1 - glaiveai/glaive-function-calling-v2 - grimulkan/LimaRP-augmented - piqa - Vezora/Tested-22k-Python-Alpaca - mattpscott/airoboros-summarization - unalignment/toxic-dpo-v0.2 license_name: yi-license license_link: https://huggingface.co/01-ai/Yi-34B-200K/blob/main/LICENSE --- # voxmenthe/airoboros-34b-3.3-mlx-4bit This model was converted to MLX format from [`jondurbin/airoboros-34b-3.3`]() using mlx-lm version **0.6.0**. Refer to the [original model card](https://huggingface.co/jondurbin/airoboros-34b-3.3) for more details on the model. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("voxmenthe/airoboros-34b-3.3-mlx-4bit") response = generate(model, tokenizer, prompt="hello", verbose=True) ```