mitkox's picture
Upload folder using huggingface_hub
400be54 verified
---
language:
- en
tags:
- code
- mlx
pipeline_tag: text-generation
---
# mlx-community/OpenCodeInterpreter-DS-6.7B-4bit
This model was converted to MLX format from [`m-a-p/OpenCodeInterpreter-DS-6.7B`]().
Refer to the [original model card](https://huggingface.co/m-a-p/OpenCodeInterpreter-DS-6.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/OpenCodeInterpreter-DS-6.7B-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```