Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Limstral 7B
|
2 |
## Mistral 7B fine-tuned on LIMA
|
3 |
|
@@ -21,4 +29,4 @@ gen = pipeline("text-generation", model=model, tokenizer=tokenizer, device=0)
|
|
21 |
instruction = "Write a email to day goodbye to me boss"
|
22 |
res = gen(instruction, max_new_tokens=512, temperature=0.3, top_p=0.75, top_k=40, repetition_penalty=1.2)
|
23 |
print(res[0]['generated_text'])
|
24 |
-
```
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- GAIR/lima
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
pipeline_tag: text-generation
|
8 |
+
---
|
9 |
# Limstral 7B
|
10 |
## Mistral 7B fine-tuned on LIMA
|
11 |
|
|
|
29 |
instruction = "Write a email to day goodbye to me boss"
|
30 |
res = gen(instruction, max_new_tokens=512, temperature=0.3, top_p=0.75, top_k=40, repetition_penalty=1.2)
|
31 |
print(res[0]['generated_text'])
|
32 |
+
```
|