--- license: cc-by-nc-4.0 tags: - mlx --- # mlx-community/Kunoichi-DPO-v2-7B-4bit-mlx This model was converted to MLX format from [`SanjiWatsuki/Kunoichi-DPO-v2-7B`](). Refer to the [original model card](https://huggingface.co/SanjiWatsuki/Kunoichi-DPO-v2-7B) for more details on the model. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("mlx-community/Kunoichi-DPO-v2-7B-4bit-mlx") response = generate(model, tokenizer, prompt="hello", verbose=True) ```