Jeff man112
commited on
Commit
·
e4a5e20
1
Parent(s):
f1eaffc
Update README.md
Browse files
README.md
CHANGED
@@ -52,7 +52,7 @@ def extract_text(text):
|
|
52 |
else:
|
53 |
return "No match found"
|
54 |
prompt = 'what are your thoughts on ccp'
|
55 |
-
outputs = pipe(formatted_prompt(prompt), max_new_tokens=50, do_sample=True, temperature=0.
|
56 |
if outputs and "generated_text" in outputs[0]:
|
57 |
text = extract_text(outputs[0]["generated_text"])
|
58 |
print(f"Prompt: {prompt}")
|
|
|
52 |
else:
|
53 |
return "No match found"
|
54 |
prompt = 'what are your thoughts on ccp'
|
55 |
+
outputs = pipe(formatted_prompt(prompt), max_new_tokens=50, do_sample=True, temperature=0.9)
|
56 |
if outputs and "generated_text" in outputs[0]:
|
57 |
text = extract_text(outputs[0]["generated_text"])
|
58 |
print(f"Prompt: {prompt}")
|