Update README.md
Browse files
README.md
CHANGED
@@ -9,7 +9,12 @@ language:
|
|
9 |
pipeline_tag: text-generation
|
10 |
---
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
13 |
```
|
14 |
from transformers import LlamaTokenizer
|
15 |
import transformers
|
@@ -43,4 +48,15 @@ sequences = pipeline(
|
|
43 |
)
|
44 |
for seq in sequences:
|
45 |
print(f"{seq['generated_text'].replace(prompt, '').split('###')[0].strip()}")
|
46 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
---
|
11 |
|
12 |
+
# Pigeon-7B -- Polish Llama 2
|
13 |
+
|
14 |
+
The new Pigeon-7B model is a finetuned Llama 2, trained on over 70k conversational Polish samples.
|
15 |
+
This is the repository for the 7B fine-tuned model, optimized for question answering and instruction executing.
|
16 |
+
|
17 |
+
# Example use:
|
18 |
```
|
19 |
from transformers import LlamaTokenizer
|
20 |
import transformers
|
|
|
48 |
)
|
49 |
for seq in sequences:
|
50 |
print(f"{seq['generated_text'].replace(prompt, '').split('###')[0].strip()}")
|
51 |
+
```
|
52 |
+
|
53 |
+
# Ethical Considerations and Limitations
|
54 |
+
Pigeon, same as a Llama 2, is a new technology that carries risks with use. Testing conducted to date has been in Polish and English, and has not covered, nor could it cover all scenarios. For these reasons, as with all LLMs, Pigeon’s potential outputs cannot be predicted in advance, and the model may in some instances produce inaccurate, biased or other objectionable responses to user prompts. Therefore, before deploying any applications of Pigeon, developers should perform safety testing and tuning tailored to their specific applications of the model.
|
55 |
+
|
56 |
+
Please see the Meta's Responsible Use Guide available at [https://ai.meta.com/llama/responsible-use-guide/](https://ai.meta.com/llama/responsible-use-guide)
|
57 |
+
|
58 |
+
# Authors
|
59 |
+
|
60 |
+
The model was trained by NLP Research Team at Typly.
|
61 |
+
|
62 |
+
You can contact us [here]([email protected]).
|