File size: 865 Bytes
7b21c12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
base_model:
- nvidia/Mistral-NeMo-Minitron-8B-Base
library_name: transformers
license: other
license_name: nvidia-community-model-license
license_link: https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-community-models-license/
tags:
- mlx
---

# mlx-community/Mistral-NeMo-Minitron-8B-Instruct

The Model [mlx-community/Mistral-NeMo-Minitron-8B-Instruct](https://huggingface.co/mlx-community/Mistral-NeMo-Minitron-8B-Instruct) was converted to MLX format from [nvidia/Mistral-NeMo-Minitron-8B-Instruct](https://huggingface.co/nvidia/Mistral-NeMo-Minitron-8B-Instruct) using mlx-lm version **0.17.1**.

## Use with mlx

```bash
pip install mlx-lm
```

```python
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Mistral-NeMo-Minitron-8B-Instruct")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```