Commit
·
3a45287
1
Parent(s):
403108f
Update README.md
Browse files
README.md
CHANGED
@@ -11,7 +11,7 @@ This is Pythia410m-V1-Instruct finetuned on No Robots. This is so it follows sys
|
|
11 |
```
|
12 |
from transformers import pipeline
|
13 |
|
14 |
-
pipe = pipeline("text-generation", model="SummerSigh/Pythia410m-V1-Instruct")
|
15 |
|
16 |
out= pipe("<|im_start|>system\nYou are a good assistant designed to answer all prompts the user asks.<|im_end|><|im_start|>user\nWhat's the meaning of life?<|im_end|><|im_start|>assistant\n",max_length = 500,repetition_penalty = 1.2, temperature = 0.5, do_sample = True)
|
17 |
|
|
|
11 |
```
|
12 |
from transformers import pipeline
|
13 |
|
14 |
+
pipe = pipeline("text-generation", model="SummerSigh/Pythia410m-V1-Instruct-SystemPromptTuning")
|
15 |
|
16 |
out= pipe("<|im_start|>system\nYou are a good assistant designed to answer all prompts the user asks.<|im_end|><|im_start|>user\nWhat's the meaning of life?<|im_end|><|im_start|>assistant\n",max_length = 500,repetition_penalty = 1.2, temperature = 0.5, do_sample = True)
|
17 |
|