louisbrulenaudet
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -14,10 +14,9 @@ language:
|
|
14 |
- en
|
15 |
library_name: transformers
|
16 |
---
|
|
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
# Pearl-7B-slerp, an xtraordinary model for maths
|
21 |
|
22 |
Pearl-7B-slerp is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
23 |
* [mlabonne/OmniBeagle-7B](https://huggingface.co/mlabonne/OmniBeagle-7B)
|
@@ -79,4 +78,21 @@ pipeline = transformers.pipeline(
|
|
79 |
|
80 |
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
81 |
print(outputs[0]["generated_text"])
|
82 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
- en
|
15 |
library_name: transformers
|
16 |
---
|
17 |
+
<center><img src='https://i.imgur.com/0xFTuAX.png' width='450px'></center>
|
18 |
|
19 |
+
# Pearl-7B-slerp, an xtraordinary 7B model for maths
|
|
|
|
|
20 |
|
21 |
Pearl-7B-slerp is a merge of the following models using [LazyMergekit](https://colab.research.google.com/drive/1obulZ1ROXHjYLn6PPZJwRR6GzgQogxxb?usp=sharing):
|
22 |
* [mlabonne/OmniBeagle-7B](https://huggingface.co/mlabonne/OmniBeagle-7B)
|
|
|
78 |
|
79 |
outputs = pipeline(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
80 |
print(outputs[0]["generated_text"])
|
81 |
+
```
|
82 |
+
|
83 |
+
## Citing & Authors
|
84 |
+
|
85 |
+
If you use this code in your research, please use the following BibTeX entry.
|
86 |
+
|
87 |
+
```BibTeX
|
88 |
+
@misc{louisbrulenaudet2023,
|
89 |
+
author = {Louis Brulé Naudet},
|
90 |
+
title = {Pearl-7B-slerp, an xtraordinary 7B model for maths},
|
91 |
+
year = {2023}
|
92 |
+
howpublished = {\url{https://huggingface.co/louisbrulenaudet/Pearl-7B-slerp}},
|
93 |
+
}
|
94 |
+
```
|
95 |
+
|
96 |
+
## Feedback
|
97 |
+
|
98 |
+
If you have any feedback, please reach out at [[email protected]](mailto:[email protected]).
|