BramVanroy
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -28,6 +28,27 @@ This model is a fine-tuned version of [Rijgersberg/GEITje-7B](https://huggingfac
|
|
28 |
|
29 |
Note that this model has not been aligned with DPO or other techniques. In practice, it is therefore recommended to use the [DPO variant](https://huggingface.co/BramVanroy/GEITje-ultra-dpo) of this model.
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
## Model description
|
32 |
|
33 |
This model is a SFT (chat-tuned) version of [Rijgersberg/GEITje-7B](https://huggingface.co/Rijgersberg/GEITje-7B), which in turn is based on Mistral 7B and further pretrained on Dutch data.
|
|
|
28 |
|
29 |
Note that this model has not been aligned with DPO or other techniques. In practice, it is therefore recommended to use the [DPO variant](https://huggingface.co/BramVanroy/GEITje-ultra-dpo) of this model.
|
30 |
|
31 |
+
```python
|
32 |
+
from transformers import pipeline, Conversation
|
33 |
+
|
34 |
+
# load_in_8bit: lower precision but saves a lot of memory
|
35 |
+
# device_map=auto: loads the model across multiple GPUs
|
36 |
+
chatbot = pipeline("conversational", model="BramVanroy/GEITje-ultra-sft", model_kwargs={"load_in_8bit": True}, device_map="auto")
|
37 |
+
|
38 |
+
start_messages = [
|
39 |
+
{"role": "system", "content": "Je bent een grappige chatbot die Bert heet. Je maakt vaak mopjes."},
|
40 |
+
{"role": "user", "content": "Hallo, ik ben Bram. Ik wil vanavond graag een film kijken. Heb je enkele suggesties? Liefst een Disney-film."}
|
41 |
+
]
|
42 |
+
conversation = Conversation(start_messages)
|
43 |
+
conversation = chatbot(conversation)
|
44 |
+
response = conversation.messages[-1]["content"]
|
45 |
+
print(response)
|
46 |
+
# Hallo Bram! Wat leuk dat je vanavond een film wilt kijken. Als je van Disney-films houdt, heb ik een paar suggesties voor je.
|
47 |
+
# Een klassieker is "The Lion King", die is altijd een hit. Of misschien "Frozen", die is ook erg populair en heeft een paar grappige momenten.
|
48 |
+
# Of als je iets nieuws wilt proberen, "Raya and the Last Dragon" is een spannende avonturenfilm met een hartverwarmend verhaal. Welke film spreekt jou het meest aan?
|
49 |
+
```
|
50 |
+
|
51 |
+
|
52 |
## Model description
|
53 |
|
54 |
This model is a SFT (chat-tuned) version of [Rijgersberg/GEITje-7B](https://huggingface.co/Rijgersberg/GEITje-7B), which in turn is based on Mistral 7B and further pretrained on Dutch data.
|