Upload README.md with huggingface_hub
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: llama3
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
tags:
|
6 |
+
- finance
|
7 |
+
- mlx
|
8 |
+
- mlx-my-repo
|
9 |
+
datasets:
|
10 |
+
- Open-Orca/OpenOrca
|
11 |
+
- GAIR/lima
|
12 |
+
- WizardLM/WizardLM_evol_instruct_V2_196k
|
13 |
+
base_model: instruction-pretrain/finance-Llama3-8B
|
14 |
+
---
|
15 |
+
|
16 |
+
# codingmavin/finance-Llama3-8B-mlx-6Bit
|
17 |
+
|
18 |
+
The Model [codingmavin/finance-Llama3-8B-mlx-6Bit](https://huggingface.co/codingmavin/finance-Llama3-8B-mlx-6Bit) was converted to MLX format from [instruction-pretrain/finance-Llama3-8B](https://huggingface.co/instruction-pretrain/finance-Llama3-8B) using mlx-lm version **0.22.1**.
|
19 |
+
|
20 |
+
## Use with mlx
|
21 |
+
|
22 |
+
```bash
|
23 |
+
pip install mlx-lm
|
24 |
+
```
|
25 |
+
|
26 |
+
```python
|
27 |
+
from mlx_lm import load, generate
|
28 |
+
|
29 |
+
model, tokenizer = load("codingmavin/finance-Llama3-8B-mlx-6Bit")
|
30 |
+
|
31 |
+
prompt="hello"
|
32 |
+
|
33 |
+
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
|
34 |
+
messages = [{"role": "user", "content": prompt}]
|
35 |
+
prompt = tokenizer.apply_chat_template(
|
36 |
+
messages, tokenize=False, add_generation_prompt=True
|
37 |
+
)
|
38 |
+
|
39 |
+
response = generate(model, tokenizer, prompt=prompt, verbose=True)
|
40 |
+
```
|