Upload 21 files
Browse files- cat_reject_aura.py +27 -0
- cat_reject_maybe_1580.jpg +3 -0
- cat_reject_maybe_1581.jpg +3 -0
- cat_reject_maybe_1582.jpg +3 -0
- cat_reject_maybe_1583.jpg +3 -0
- cat_reject_maybe_1584.jpg +3 -0
- cat_reject_maybe_1585.jpg +3 -0
- cat_reject_maybe_1586.jpg +3 -0
- cat_reject_maybe_1587.jpg +3 -0
- cat_reject_maybe_1588.jpg +3 -0
- cat_reject_maybe_1589.jpg +3 -0
- cat_reject_maybe_1590.jpg +3 -0
- cat_reject_maybe_1591.jpg +3 -0
- cat_reject_maybe_1592.jpg +3 -0
- cat_reject_maybe_1593.jpg +3 -0
- cat_reject_maybe_1594.jpg +3 -0
- cat_reject_maybe_1595.jpg +3 -0
- cat_reject_maybe_1596.jpg +3 -0
- cat_reject_maybe_1597.jpg +3 -0
- cat_reject_maybe_1598.jpg +3 -0
- cat_reject_maybe_1599.jpg +3 -0
cat_reject_aura.py
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from diffusers import AuraFlowPipeline
|
2 |
+
import torch
|
3 |
+
|
4 |
+
pipeline = AuraFlowPipeline.from_pretrained(
|
5 |
+
"fal/AuraFlow",
|
6 |
+
torch_dtype=torch.float16
|
7 |
+
).to("cuda")
|
8 |
+
|
9 |
+
prompt = """Concept art of a skeleton cowboy, dressed in shabby clothes,\
|
10 |
+
is illuminated by a flash from a gun show against a solid black background. \
|
11 |
+
He's holding a gun and has a book open on his thigh. The image is minimalist, \
|
12 |
+
with a strong contrast between light and darkness. The picture captures a moment of solitude and mystery."""
|
13 |
+
|
14 |
+
num_inference_steps=2.5
|
15 |
+
guidance_scale=3.5
|
16 |
+
|
17 |
+
for seed in range(1580,1600):
|
18 |
+
image = pipeline(
|
19 |
+
prompt=prompt,
|
20 |
+
height=1024,
|
21 |
+
width=1024,
|
22 |
+
num_inference_steps=num_inference_steps,
|
23 |
+
generator=torch.Generator().manual_seed(seed),
|
24 |
+
guidance_scale=guidance_scale,
|
25 |
+
).images[0]
|
26 |
+
|
27 |
+
image.save(f"cat_reject_maybe_{seed}.jpg")
|
cat_reject_maybe_1580.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1581.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1582.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1583.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1584.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1585.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1586.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1587.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1588.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1589.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1590.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1591.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1592.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1593.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1594.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1595.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1596.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1597.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1598.jpg
ADDED
Git LFS Details
|
cat_reject_maybe_1599.jpg
ADDED
Git LFS Details
|