Update README.md
Browse files
README.md
CHANGED
@@ -9,6 +9,21 @@ base_model:
|
|
9 |
- Equall/Saul-Instruct-v1
|
10 |
pipeline_tag: text-generation
|
11 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
This model is a merge of [timpal0l/Mistral-7B-v0.1-flashback-v2-instruct](https://huggingface.co/timpal0l/Mistral-7B-v0.1-flashback-v2-instruct) and [Equall/Saul-Instruct-v1](https://huggingface.co/Equall/Saul-Instruct-v1).
|
13 |
## config.yaml
|
14 |
```yaml
|
|
|
9 |
- Equall/Saul-Instruct-v1
|
10 |
pipeline_tag: text-generation
|
11 |
---
|
12 |
+
# How to use:
|
13 |
+
```python
|
14 |
+
from transformers import pipeline
|
15 |
+
pipe = pipeline("text-generation", "timpal0l/tyr", device="cuda:0")
|
16 |
+
|
17 |
+
response = pipe("USER:Vad är grundlagen?ASSISTANT:", max_length=512, temperature=1.0)
|
18 |
+
print(response[0]["generated_text"].split("ASSISTANT: ")[1])
|
19 |
+
```
|
20 |
+
```python
|
21 |
+
>>> "Grundlagen är en samling av grundläggande lagar som reglerar den politiska strukturen och funktionen av en nation.
|
22 |
+
Den innehåller de grundläggande principer och regler som styr en nations politiska system, inklusive rättigheter och skyldigheter av medborgare,
|
23 |
+
struktur och funktion av regeringen, och relationer mellan olika politiska organ.
|
24 |
+
Grundlagen kan också inkludera de grundläggande värderingarna och principer som en nation står för."
|
25 |
+
```
|
26 |
+
|
27 |
This model is a merge of [timpal0l/Mistral-7B-v0.1-flashback-v2-instruct](https://huggingface.co/timpal0l/Mistral-7B-v0.1-flashback-v2-instruct) and [Equall/Saul-Instruct-v1](https://huggingface.co/Equall/Saul-Instruct-v1).
|
28 |
## config.yaml
|
29 |
```yaml
|