lucataco's picture
8952e866addb03ff84fdd846d6826baf6575625f4332259c8b939bf26a231558
418b2b3 verified
|
raw
history blame
793 Bytes
---
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)
```