Spaces:
Running
Running
File size: 4,761 Bytes
b7130f6 495de9f 857ece0 914db2c b7130f6 6c2c08f b7130f6 857ece0 3ee5c51 d7a7f21 3ee5c51 d7a7f21 b7130f6 cb54dc7 6c2c08f c30096f 6c2c08f b7130f6 914db2c 857ece0 b7130f6 857ece0 b7130f6 857ece0 f7e8a5c 970f37f f7e8a5c b7130f6 857ece0 a80fd23 b7130f6 28d4f0b e4ba9a7 6c2c08f e4ba9a7 857ece0 a80fd23 b7130f6 b4dffda b7130f6 b4dffda b7130f6 b4dffda b7130f6 eb4340e 039becb eb4340e 857ece0 f2bbc1c 8389ca8 7acd290 f2bbc1c 8389ca8 039becb 857ece0 039becb d38acc9 b32d4d0 5c6d690 e4ba9a7 6afd0be d38acc9 039becb b7130f6 eb4340e 9103190 b7130f6 |
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
import random
import time
from io import BytesIO
from urllib.parse import quote
from datasets import load_dataset
import gradio as gr
import requests
from PIL import Image
MAX_SEED = 2 ** 31 - 1
session = requests.Session()
def _fetch(*args, retries=5, **kwargs):
for i in range(retries + 1):
try:
response = session.get(*args, **kwargs)
response.raise_for_status()
return response.content
except requests.RequestException:
if response.status_code in {429, 500, 502, 503, 504}:
delay = min(2 ** i, 60)
time.sleep(delay)
else:
return None
return None
def load_examples():
ds = load_dataset("k-mktr/improved-flux-prompts", split="train")
return [[item] for item in ds.shuffle()["prompt"][:20]]
def generate(
prompt,
seed=None,
randomize_seed=True,
width=1024,
height=1024
):
if seed is None or randomize_seed:
seed = random.randint(0, MAX_SEED)
url = f"https://pollinations.ai/p/{quote(prompt)}?nologo=true&private=true"
params = dict(
prompt=prompt,
seed=seed,
width=width,
height=height
)
image = _fetch(url, params=params)
if image:
return Image.open(BytesIO(image))
return None
with gr.Blocks(
title="Text-to-Image",
css="footer {display: none !important}",
theme=gr.themes.Base(
primary_hue="red",
secondary_hue="red",
neutral_hue="neutral"
)
) as app:
gr.Markdown("# Text-to-Image")
with gr.Tab("π¨ Generate"):
result = gr.Image(
label="Image",
show_label=False,
format="jpeg",
interactive=False
)
with gr.Row(equal_height=True):
prompt = gr.Textbox(
label="Prompt",
show_label=False,
placeholder="Enter your prompt..",
max_lines=1,
container=False
)
btn = gr.Button("Generate!", variant="primary")
with gr.Tab("π‘ Examples"):
examples = gr.Examples(
load_examples(),
inputs=[prompt],
examples_per_page=2
)
randomize_btn = gr.Button("π² Randomize")
with gr.Tab("βοΈ Settings"):
with gr.Row():
seed = gr.Slider(
label="Seed",
minimum=0,
maximum=MAX_SEED,
step=1,
value=0
)
randomize_seed = gr.Checkbox(label="Randomize seed", value=True)
with gr.Row():
width = gr.Slider(
label="Width",
minimum=256,
maximum=1344,
step=64,
value=1024
)
height = gr.Slider(
label="Height",
minimum=256,
maximum=1344,
step=64,
value=1024
)
with gr.Tab("πΌοΈ Gallery"):
gallery = gr.Gallery(
label="Gallery",
show_label=False,
format="jpeg",
interactive=False
)
clear_btn = gr.Button("ποΈ Clear")
with gr.Accordion("βΉοΈ About", open=False):
gr.Markdown(f"""
* Created by [π cherry-ghosts community](https://hf.co/cherry-ghosts)
* Powered by [π Pollinations](https://pollinations.ai) | [GitHub](https://github.com/pollinations/pollinations)
* Running on [Gradio](https://www.gradio.app) v{gr.__version__}
""")
def update_examples():
return gr.update(samples=load_examples())
def add_to_gallery(img, gallery):
if gallery is None:
gallery = []
if img is not None:
gallery = gallery + [img]
return gallery
def clear_gallery():
return []
app.load(
update_examples,
inputs=None,
outputs=[examples.dataset],
queue=False,
show_api=False
)
randomize_btn.click(
update_examples,
inputs=None,
outputs=[examples.dataset],
queue=False,
show_api=False
)
clear_btn.click(
clear_gallery,
inputs=None,
outputs=[gallery],
queue=False,
show_api=False
)
btn.click(
generate,
inputs=[prompt, seed, randomize_seed, width, height],
outputs=[result],
api_name="run"
).then(
add_to_gallery,
inputs=[result, gallery],
outputs=[gallery],
queue=False,
show_api=False
)
if __name__ == "__main__":
app.queue().launch(debug=True, ssr_mode=False) |