louisbrulenaudet
commited on
Commit
•
a91a564
1
Parent(s):
4394f49
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
base_model: louisbrulenaudet/Pearl-3x7B
|
5 |
+
library_name: mlx
|
6 |
+
tags:
|
7 |
+
- moe
|
8 |
+
- frankenmoe
|
9 |
+
- merge
|
10 |
+
- mergekit
|
11 |
+
- lazymergekit
|
12 |
+
- dvilasuero/DistilabelBeagle14-7B
|
13 |
+
- beowolx/CodeNinja-1.0-OpenChat-7B
|
14 |
+
- WizardLM/WizardMath-7B-V1.1
|
15 |
+
- Maths
|
16 |
+
- Code
|
17 |
+
- Python
|
18 |
+
pipeline_tag: text-generation
|
19 |
+
license: apache-2.0
|
20 |
+
---
|
21 |
+
|
22 |
+
<center><img src='https://i.imgur.com/dU9dUh0.png' width='500px'></center>
|
23 |
+
|
24 |
+
# mlx-community/Pearl-3x7B
|
25 |
+
|
26 |
+
This model was converted to MLX format from [`louisbrulenaudet/Pearl-3x7B`]() using mlx-vlm version **0.16.1**.
|
27 |
+
Refer to the [original model card](louisbrulenaudet/Pearl-3x7B) for more details on the model.
|
28 |
+
|
29 |
+
## Use with mlx
|
30 |
+
|
31 |
+
```bash
|
32 |
+
pip install -U mlx-vlm
|
33 |
+
python -m mlx_vlm.generate --model mlx-community/Pearl-3x7B --max-tokens 100 --temp 0.0
|
34 |
+
```
|
35 |
+
|
36 |
+
```python
|
37 |
+
from mlx_lm import load, generate
|
38 |
+
|
39 |
+
model, tokenizer = load("mlx-community/Pearl-3x7B")
|
40 |
+
response = generate(model, tokenizer, prompt="hello", verbose=True)
|
41 |
+
```
|
42 |
+
|
43 |
+
## Citing & Authors
|
44 |
+
|
45 |
+
If you use this code in your research, please use the following BibTeX entry.
|
46 |
+
|
47 |
+
```BibTeX
|
48 |
+
@misc{louisbrulenaudet2024,
|
49 |
+
author = {Louis Brulé Naudet},
|
50 |
+
title = {Pearl-3x7B, an xtraordinary Mixture of Experts (MoE) for data science},
|
51 |
+
year = {2024}
|
52 |
+
howpublished = {\url{https://huggingface.co/mlx-community/Pearl-3x7B}},
|
53 |
+
}
|
54 |
+
```
|
55 |
+
|
56 |
+
## Feedback
|
57 |
+
|
58 |
+
If you have any feedback, please reach out at [[email protected]](mailto:[email protected]).
|