--- license: cc-by-nc-4.0 tags: - mlx --- # mlx-community/MXLewd-L2-20B-4bit This model was converted to MLX format from [`Undi95/MXLewd-L2-20B`](). Refer to the [original model card](https://huggingface.co/Undi95/MXLewd-L2-20B) 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/MXLewd-L2-20B-4bit") response = generate(model, tokenizer, prompt="hello", verbose=True) ```