Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- pt
|
4 |
+
license: apache-2.0
|
5 |
+
library_name: transformers
|
6 |
+
tags:
|
7 |
+
- Misral
|
8 |
+
- Portuguese
|
9 |
+
- 7b
|
10 |
+
base_model: mistralai/Mistral-7B-Instruct-v0.2
|
11 |
+
datasets:
|
12 |
+
- pablo-moreira/gpt4all-j-prompt-generations-pt
|
13 |
+
- rhaymison/superset
|
14 |
+
---
|
15 |
+
|
16 |
+
# Mistral portuguese luana 7b Q8 GUFF
|
17 |
+
|
18 |
+
<p align="center">
|
19 |
+
<img src="https://raw.githubusercontent.com/rhaymisonbetini/huggphotos/main/luana7b.webp" width="50%" style="margin-left:'auto' margin-right:'auto' display:'block'"/>
|
20 |
+
</p>
|
21 |
+
|
22 |
+
This GGUF model, derived from the Mixtrla Luana 7b, has been quantized in Q8/8bits. The model was trained with a superset of 200,000 instructions in Portuguese, aiming to help fill the gap in models available in Portuguese. Tuned from the Mistral 7b, this model has been primarily adjusted for instructional tasks.
|
23 |
+
|
24 |
+
Remember that verbs are important in your prompt. Tell your model how to act or behave so that you can guide them along the path of their response.
|
25 |
+
Important points like these help models (even smaller models like 7b) to perform much better.
|
26 |
+
|
27 |
+
```python
|
28 |
+
!pip install -q -U transformers
|
29 |
+
!pip install -q -U accelerate
|
30 |
+
!pip install -q -U bitsandbytes
|
31 |
+
|
32 |
+
prompt = f"""<s>[INST] Abaixo está uma instrução que descreve uma tarefa, juntamente com uma entrada que fornece mais contexto.
|
33 |
+
Escreva uma resposta que complete adequadamente o pedido.
|
34 |
+
### instrução: aja como um professor de matemática e me explique porque 2 + 2 = 4.
|
35 |
+
[/INST]"""
|
36 |
+
|
37 |
+
|
38 |
+
```
|
39 |
+
|
40 |
+
### Comments
|
41 |
+
|
42 |
+
Any idea, help or report will always be welcome.
|
43 |
+
|
44 |
+
email: [email protected]
|
45 |
+
|
46 |
+
<div style="display:flex; flex-direction:row; justify-content:left">
|
47 |
+
<a href="https://www.linkedin.com/in/rhaymison-cristian-betini-2b3016175/" target="_blank">
|
48 |
+
<img src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white">
|
49 |
+
</a>
|
50 |
+
<a href="https://github.com/rhaymisonbetini" target="_blank">
|
51 |
+
<img src="https://img.shields.io/badge/GitHub-100000?style=for-the-badge&logo=github&logoColor=white">
|
52 |
+
</a>
|
53 |
+
</div>
|