Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- pl
|
4 |
+
license: apache-2.0
|
5 |
+
library_name: transformers
|
6 |
+
tags:
|
7 |
+
- finetuned
|
8 |
+
- gguf
|
9 |
+
inference: false
|
10 |
+
pipeline_tag: text-generation
|
11 |
+
base_model: speakleash/Bielik-1.5B-v3.0-Instruct
|
12 |
+
---
|
13 |
+
<p align="center">
|
14 |
+
<img src="https://huggingface.co/speakleash/Bielik-7B-Instruct-v0.1-GGUF/raw/main/speakleash_cyfronet.png">
|
15 |
+
</p>
|
16 |
+
|
17 |
+
# Bielik-1.5B-v3.0-Instruct-MLX-8bit
|
18 |
+
This model was converted to MLX format from [SpeakLeash](https://speakleash.org/)'s [Bielik-1.5B-v3.0-Instruct](https://huggingface.co/speakleash/Bielik-11B-v2.2-Instruct).
|
19 |
+
|
20 |
+
**DISCLAIMER: Be aware that quantised models show reduced response quality and possible hallucinations!**
|
21 |
+
|
22 |
+
## Use with mlx
|
23 |
+
|
24 |
+
```bash
|
25 |
+
pip install mlx-lm
|
26 |
+
```
|
27 |
+
|
28 |
+
```python
|
29 |
+
from mlx_lm import load, generate
|
30 |
+
|
31 |
+
model, tokenizer = load("speakleash/Bielik-1.5B-v3.0-Instruct-MLX-8bit")
|
32 |
+
response = generate(model, tokenizer, prompt="hello", verbose=True)
|
33 |
+
```
|
34 |
+
|
35 |
+
### Model description:
|
36 |
+
|
37 |
+
* **Developed by:** [SpeakLeash](https://speakleash.org/) & [ACK Cyfronet AGH](https://www.cyfronet.pl/)
|
38 |
+
* **Language:** Polish
|
39 |
+
* **Model type:** causal decoder-only
|
40 |
+
* **Quant from:** [Bielik-1.5B-v3.0-Instruct](https://huggingface.co/speakleash/Bielik-1.5B-v3.0-Instruct)
|
41 |
+
* **Finetuned from:** [Bielik-1.5B-v3](https://huggingface.co/speakleash/Bielik-1.5B-v3)
|
42 |
+
* **License:** Apache 2.0 and [Terms of Use](https://bielik.ai/terms/)
|
43 |
+
|
44 |
+
### Responsible for model quantization
|
45 |
+
* [Remigiusz Kinas](https://www.linkedin.com/in/remigiusz-kinas/)<sup>SpeakLeash</sup> - team leadership, conceptualizing, calibration data preparation, process creation and quantized model delivery.
|
46 |
+
|
47 |
+
## Contact Us
|
48 |
+
|
49 |
+
If you have any questions or suggestions, please use the discussion tab. If you want to contact us directly, join our [Discord SpeakLeash](https://discord.gg/CPBxPce4).
|