cactusfriend
commited on
Commit
·
a293cbf
1
Parent(s):
ffb680a
small update to print()
Browse files
README.md
CHANGED
@@ -28,7 +28,7 @@ def makePrompts(prompt: str, *, p: float=0.9,
|
|
28 |
top_p=p, top_k=k, num_return_sequences=num)
|
29 |
items = set([i['generated_text'] for i in outputs])
|
30 |
print("-" * 60)
|
31 |
-
print("\n".join(items))
|
32 |
print("-" * 60)
|
33 |
```
|
34 |
|
|
|
28 |
top_p=p, top_k=k, num_return_sequences=num)
|
29 |
items = set([i['generated_text'] for i in outputs])
|
30 |
print("-" * 60)
|
31 |
+
print("\n ---\n".join(items))
|
32 |
print("-" * 60)
|
33 |
```
|
34 |
|