File size: 771 Bytes
06fe682 |
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 32 33 34 35 36 37 38 39 40 41 42 |
---
language:
- en
- de
- fr
- it
- pt
- hi
- es
- th
library_name: transformers
license: llama3.1
pipeline_tag: text-generation
tags:
- llama-3.1
- conversational
- instruction following
- reasoning
- function calling
- mergekit
- finetuning
- axolotl
- mlx
---
# voxmenthe/Llama-3.1-Storm-8B
The Model [voxmenthe/Llama-3.1-Storm-8B](https://huggingface.co/voxmenthe/Llama-3.1-Storm-8B) was converted to MLX format from [akjindal53244/Llama-3.1-Storm-8B](https://huggingface.co/akjindal53244/Llama-3.1-Storm-8B) using mlx-lm version **0.17.0**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("voxmenthe/Llama-3.1-Storm-8B")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```
|