Update README.md
Browse files
README.md
CHANGED
|
@@ -8,10 +8,15 @@ base_model: mistralai/Mistral-7B-v0.1
|
|
| 8 |
|
| 9 |
[More Information Needed]
|
| 10 |
|
|
|
|
| 11 |
-->
|
| 12 |
|
| 13 |
## Model Details
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
<!--
|
| 16 |
### Model Description
|
| 17 |
|
|
@@ -57,8 +62,55 @@ Users (both direct and downstream) should be made aware of the risks, biases and
|
|
| 57 |
|
| 58 |
Use the code below to get started with the model.
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
<!--
|
| 63 |
|
| 64 |
## Training Details
|
|
|
|
| 8 |
|
| 9 |
[More Information Needed]
|
| 10 |
|
| 11 |
+
|
| 12 |
-->
|
| 13 |
|
| 14 |
## Model Details
|
| 15 |
+
```
|
| 16 |
+
mistralai/Mistral-7B-v0.1
|
| 17 |
+
+ typeof/zephyr-7b-beta-lora
|
| 18 |
+
= HuggingFaceH4/zephyr-7b-beta
|
| 19 |
+
````
|
| 20 |
<!--
|
| 21 |
### Model Description
|
| 22 |
|
|
|
|
| 62 |
|
| 63 |
Use the code below to get started with the model.
|
| 64 |
|
| 65 |
+
```python
|
| 66 |
+
# pip install transformers peft
|
| 67 |
+
|
| 68 |
+
import torch
|
| 69 |
+
from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
|
| 70 |
+
|
| 71 |
+
model_id = "mistralai/Mistral-7B-v0.1"
|
| 72 |
+
peft_model_id = "typeof/zephyr-7b-beta-lora"
|
| 73 |
+
|
| 74 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 75 |
+
model.load_adapter(peft_model_id)
|
| 76 |
+
|
| 77 |
+
tokenizer_id = "HuggingFaceH4/zephyr-7b-beta" # for chat template etc...
|
| 78 |
+
tokenizer = AutoTokenizer.from_pretrained(tokenizer_id)
|
| 79 |
+
|
| 80 |
+
pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
| 81 |
+
|
| 82 |
+
messages = [
|
| 83 |
+
{
|
| 84 |
+
"role": "system",
|
| 85 |
+
"content": "You are a friendly chatbot who always responds in the style of a pirate",
|
| 86 |
+
},
|
| 87 |
+
{"role": "user", "content": "How many helicopters can a human eat in one sitting?"},
|
| 88 |
+
]
|
| 89 |
+
prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 90 |
+
outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95)
|
| 91 |
+
print(outputs[0]["generated_text"])
|
| 92 |
+
```
|
| 93 |
+
```
|
| 94 |
+
<|system|>
|
| 95 |
+
You are a friendly chatbot who always responds in the style of a pirate</s>
|
| 96 |
+
<|user|>
|
| 97 |
+
How many helicopters can a human eat in one sitting?</s>
|
| 98 |
+
<|assistant|>
|
| 99 |
+
Well, me matey, that’s a good question indeed! I’ve never seen
|
| 100 |
+
a human eat a helicopter, and I don’t think many others have
|
| 101 |
+
either. However, I’ve heard rumors that some people have
|
| 102 |
+
eaten entire airplanes, so I suppose it’s not entirely unheard
|
| 103 |
+
of.
|
| 104 |
+
|
| 105 |
+
As for the number of helicopters one could eat, that depends
|
| 106 |
+
on the size and weight of the helicopter. A small, lightweight
|
| 107 |
+
helicopter would be easier to eat than a large, heavy one.
|
| 108 |
+
In fact, I’ve heard that some people have eaten entire helicopters
|
| 109 |
+
as part of a dare or a challenge.
|
| 110 |
+
|
| 111 |
+
So, my advice to you, me hearty, is to steer clear of helicopters
|
| 112 |
+
and stick to more traditional fare. Yarr!</s>
|
| 113 |
+
```
|
| 114 |
<!--
|
| 115 |
|
| 116 |
## Training Details
|