File size: 838 Bytes
d936534 2fd732e d936534 2fd732e d936534 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
---
language:
- code
license: llama2
tags:
- llama-2
- mlx
pipeline_tag: text-generation
---
![Alt text](https://cdn.discordapp.com/attachments/1064373193982361601/1202164612645265418/codellama70bbase.png?ex=65cc760a&is=65ba010a&hm=d8db3259380c5faa567b20614af3c1c203a459fa7fbf3e01221bb80d9a95e246&)
# mlx-community/CodeLlama-70b-hf-4bit-MLX
This model was converted to MLX format from [`codellama/CodeLlama-70b-hf`]().
Refer to the [original model card](https://huggingface.co/codellama/CodeLlama-70b-hf) for more details on the model.
This can be used as base for additional fine-tuning experiments.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/CodeLlama-70b-hf-4bit-MLX")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```
|