File size: 793 Bytes
20df143
 
 
 
 
 
418b2b3
 
20df143
 
 
 
 
 
 
418b2b3
 
 
 
20df143
418b2b3
20df143
418b2b3
 
 
 
 
 
 
 
20df143
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
---
language:
- en
license: cc-by-nc-4.0
tags:
- mlx
base_model:
- upstage/SOLAR-10.7B-v1.0
datasets:
- c-s-ale/alpaca-gpt4-data
- Open-Orca/OpenOrca
- Intel/orca_dpo_pairs
- allenai/ultrafeedback_binarized_cleaned
---

# mlx-community/SOLAR-10.7B-Instruct-v1.0-4bit

The Model [mlx-community/SOLAR-10.7B-Instruct-v1.0-4bit](https://huggingface.co./mlx-community/SOLAR-10.7B-Instruct-v1.0-4bit) was converted to MLX format from [upstage/SOLAR-10.7B-Instruct-v1.0](https://huggingface.co./upstage/SOLAR-10.7B-Instruct-v1.0) using mlx-lm version **0.13.0**.

## Use with mlx

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

```python
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/SOLAR-10.7B-Instruct-v1.0-4bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```