Commit
·
de55a08
1
Parent(s):
6e626f3
correct vocab
Browse files- run_local.py +1 -1
run_local.py
CHANGED
|
@@ -25,7 +25,7 @@ counter = 1000
|
|
| 25 |
for b in begin:
|
| 26 |
for m in mid:
|
| 27 |
for e in end:
|
| 28 |
-
prompt = b +
|
| 29 |
|
| 30 |
images = pipe(prompt=prompt, num_images_per_prompt=2, eta=1.0, negative_prompt="ugly, bad quality, deformed", num_inference_steps=50).images
|
| 31 |
|
|
|
|
| 25 |
for b in begin:
|
| 26 |
for m in mid:
|
| 27 |
for e in end:
|
| 28 |
+
prompt = b + m + e + ", highly realistic, super resolution, high quality photography, beautiful"
|
| 29 |
|
| 30 |
images = pipe(prompt=prompt, num_images_per_prompt=2, eta=1.0, negative_prompt="ugly, bad quality, deformed", num_inference_steps=50).images
|
| 31 |
|