-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathvars.py
76 lines (74 loc) · 2.32 KB
/
vars.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
MAX_IMAGE_SIZE = 2048
MAX_SEED = 1000000000
DEFAULT_HEIGHT = 1024
DEFAULT_WIDTH = 1024
# num_inference_steps, guidance_scale, pag_scale, seed
EXAMPLES = [
[
"🐶 Wearing 🕶 flying on the 🌈",
1024,
1024,
20,
5,
2,
2,
],
[
"大漠孤烟直, 长河落日圆",
1024,
1024,
20,
5,
2,
23,
],
[
"Pirate ship trapped in a cosmic maelstrom nebula, rendered in cosmic beach whirlpool engine, "
"volumetric lighting, spectacular, ambient lights, light pollution, cinematic atmosphere, "
"art nouveau style, illustration art artwork by SenseiJaye, intricate detail.",
1024,
1024,
20,
5,
2,
233,
],
[
"A photo of a Eurasian lynx in a sunlit forest, with tufted ears and a spotted coat. The lynx should be "
"sharply focused, gazing into the distance, while the background is softly blurred for depth. Use cinematic "
"lighting with soft rays filtering through the trees, and capture the scene with a shallow depth of field "
"for a natural, peaceful atmosphere. 8K resolution, highly detailed, photorealistic, "
"cinematic lighting, ultra-HD.",
1024,
1024,
20,
5,
2,
2333,
],
[
"A stylish woman walks down a Tokyo street filled with warm glowing neon and animated city signage. "
"She wears a black leather jacket, a long red dress, and black boots, and carries a black purse. "
"She wears sunglasses and red lipstick. She walks confidently and casually. "
"The street is damp and reflective, creating a mirror effect of the colorful lights. "
"Many pedestrians walk about.",
1024,
1024,
20,
5,
2,
23333,
],
[
"Cozy bedroom with vintage wooden furniture and a large circular window covered in lush green vines, "
"opening to a misty forest. Soft, ambient lighting highlights the bed with crumpled blankets, a bookshelf, "
"and a desk. The atmosphere is serene and natural. 8K resolution, highly detailed, photorealistic, "
"cinematic lighting, ultra-HD.",
1024,
1024,
20,
5,
2,
233333,
],
]