File size: 16,984 Bytes
00d54a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import os
import torch
import gradio as gr
from PIL import Image
from diffusers import StableDiffusionPipeline, EulerAncestralDiscreteScheduler

model_id = "Maseshi/Animistatics"
auth_token = os.getenv("auth_token")
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.half if torch.cuda.is_available() else torch.float

# Assets
unsafe_image = Image.open(r"unsafe.png")

# Model
pipeline = StableDiffusionPipeline.from_pretrained(
    model_id,
    torch_dtype=dtype,
    use_auth_token=auth_token
)
pipeline.to(device)
pipeline.unet.to(memory_format=torch.channels_last)
pipeline.enable_vae_slicing()

if device == "cuda":
    pipeline.enable_attention_slicing(1)
    pipeline.enable_xformers_memory_efficient_attention()
    pipeline.vae.enable_xformers_memory_efficient_attention()
else:
    pipeline.enable_attention_slicing()

pipeline.scheduler = EulerAncestralDiscreteScheduler.from_config(pipeline.scheduler.config)

def infer(prompt, negative, samples, steps, guidance_scale, seed):
    prompt = str(prompt)
    negative = str(negative)
    samples = int(samples)
    steps = int(steps)
    guidance_scale = int(guidance_scale)
    seed = int(seed)

    seeds = []
    gallery = []
    generator = torch.Generator(device=device)

    if seed <= 0 or seed is None:
        for _ in range(samples):
            seed = generator.seed()
            seeds.append(seed)
            
            generator = generator.manual_seed(seed)
    
    pil = pipeline(
        prompt=prompt,
        negative_prompt=negative,
        generator=generator,
        num_images_per_prompt=samples,
        guidance_scale=guidance_scale,
        num_inference_steps=steps
    )
    
    for i, image in enumerate(pil.images):
        if pil.nsfw_content_detected[i]:
            gallery.append(unsafe_image)
        else:
            gallery.append(image)
            
    return gallery



# UI Setup
with gr.Blocks(
    css="""
    .gradio-container {
        font-family: 'IBM Plex Sans', sans-serif;
    }
    .gr-button {
        color: white;
        border-color: black;
        background: black;
    }
    input[type='range'] {
        accent-color: black;
    }
    .dark input[type='range'] {
        accent-color: #dfdfdf;
    }
    .container {
        max-width: 730px;
        margin: auto;
        padding-top: 1.5rem;
    }
    #gallery {
        min-height: 30rem;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
        border-bottom-right-radius: .5rem !important;
        border-bottom-left-radius: .5rem !important;
    }
    #gallery>div>.h-full {
        min-height: 20rem;
    }
    .animate-spin {
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }
    #share-btn-container {
        display: flex;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        background-color: #000000;
        border: 1.5px solid #222222;
        justify-content: center;
        align-items: center;
        border-radius: 9999px !important;
        width: 13rem;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    #share-btn {
        all: initial;
        color: #ffffff;
        font-weight: 600;
        cursor: pointer;
        font-family: 'IBM Plex Sans', sans-serif;
        margin-left: 0.5rem !important;
        margin-left: 0.5rem !important;
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
        right: 0;
    }
    #share-btn * {
        all: unset;
    }
    #share-btn-container div:nth-child(-n+2){
        width: auto !important;
        min-height: 0px !important;
    }
    #share-btn-container .wrap {
        display: none !important;
    }
    """
) as demo:
    gr.Markdown(
        """
        <center>
            <h1>
                <strong>
                    Animistatics Demo
                </strong>
            </h1>
            <p>
                Animistatics is the latest text-to-image model from Maseshi. <a style="text-decoration: underline;" href="https://huggingface.co/spaces/Maseshi/Animistatics">Access Animistatics Space here</a><br>For faster generation and API access you can try it at <a href="https://colab.research.google.com/drive/1Qf7KGx7wCQ6XCs4ai_2riq68ip7mZw_t?usp=sharing" style="text-decoration: underline;" target="_blank" >Google Colab</a >.</a>
            </p>
        </center>
        """
    )
    with gr.Group():
        with gr.Box():
            with gr.Row():
                with gr.Column():
                    prompt = gr.Textbox(
                        label="Enter your prompt",
                        show_label=False,
                        placeholder="Enter your prompt"
                    ).style(
                        border=(True, False, True, True),
                        rounded=(True, False, False, True),
                        container=False,
                    )
                    negative = gr.Textbox(
                        label="Enter your negative prompt",
                        show_label=False,
                        placeholder="Enter a negative prompt"
                    ).style(
                        border=(True, False, True, True),
                        rounded=(True, False, False, True),
                        container=False,
                    )
                generate_button = gr.Button(
                    "Generate image"
                ).style(
                    margin=False,
                    rounded=(False, True, True, False),
                    full_width=True,
                )
        gallery = gr.Gallery(
            label="Generated images",
            show_label=False
        ).style(
            grid=2,
            height="auto"
        )
    with gr.Accordion(
        "Advanced settings",
        open=False
    ):
        with gr.Group():
            with gr.Row():
                samples = gr.Slider(
                    label="Images",
                    minimum=1,
                    maximum=4,
                    value=1,
                    step=1
                )
                steps = gr.Slider(
                    label="Steps",
                    minimum=1,
                    maximum=50,
                    value=25,
                    step=1
                )
                guidance_scale = gr.Slider(
                    label="Guidance Scale",
                    minimum=0,
                    maximum=50,
                    value=7,
                    step=0.1
                )
            seed = gr.Slider(
                label="Seed",
                minimum=0,
                maximum=2147483647,
                step=1,
                randomize=True,
            )
    with gr.Group(elem_id="share-btn-container"):
        community_icon = gr.HTML(
            """
            <svg id="share-btn-share-icon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32">
                <path d="M20.6081 3C21.7684 3 22.8053 3.49196 23.5284 4.38415C23.9756 4.93678 24.4428 5.82749 24.4808 7.16133C24.9674 7.01707 25.4353 6.93643 25.8725 6.93643C26.9833 6.93643 27.9865 7.37587 28.696 8.17411C29.6075 9.19872 30.0124 10.4579 29.8361 11.7177C29.7523 12.3177 29.5581 12.8555 29.2678 13.3534C29.8798 13.8646 30.3306 14.5763 30.5485 15.4322C30.719 16.1032 30.8939 17.5006 29.9808 18.9403C30.0389 19.0342 30.0934 19.1319 30.1442 19.2318C30.6932 20.3074 30.7283 21.5229 30.2439 22.6548C29.5093 24.3704 27.6841 25.7219 24.1397 27.1727C21.9347 28.0753 19.9174 28.6523 19.8994 28.6575C16.9842 29.4379 14.3477 29.8345 12.0653 29.8345C7.87017 29.8345 4.8668 28.508 3.13831 25.8921C0.356375 21.6797 0.754104 17.8269 4.35369 14.1131C6.34591 12.058 7.67023 9.02782 7.94613 8.36275C8.50224 6.39343 9.97271 4.20438 12.4172 4.20438H12.4179C12.6236 4.20438 12.8314 4.2214 13.0364 4.25468C14.107 4.42854 15.0428 5.06476 15.7115 6.02205C16.4331 5.09583 17.134 4.359 17.7682 3.94323C18.7242 3.31737 19.6794 3 20.6081 3ZM20.6081 5.95917C20.2427 5.95917 19.7963 6.1197 19.3039 6.44225C17.7754 7.44319 14.8258 12.6772 13.7458 14.7131C13.3839 15.3952 12.7655 15.6837 12.2086 15.6837C11.1036 15.6837 10.2408 14.5497 12.1076 13.1085C14.9146 10.9402 13.9299 7.39584 12.5898 7.1776C12.5311 7.16799 12.4731 7.16355 12.4172 7.16355C11.1989 7.16355 10.6615 9.33114 10.6615 9.33114C10.6615 9.33114 9.0863 13.4148 6.38031 16.206C3.67434 18.998 3.5346 21.2388 5.50675 24.2246C6.85185 26.2606 9.42666 26.8753 12.0653 26.8753C14.8021 26.8753 17.6077 26.2139 19.1799 25.793C19.2574 25.7723 28.8193 22.984 27.6081 20.6107C27.4046 20.212 27.0693 20.0522 26.6471 20.0522C24.9416 20.0522 21.8393 22.6726 20.5057 22.6726C20.2076 22.6726 19.9976 22.5416 19.9116 22.222C19.3433 20.1173 28.552 19.2325 27.7758 16.1839C27.639 15.6445 27.2677 15.4256 26.746 15.4263C24.4923 15.4263 19.4358 19.5181 18.3759 19.5181C18.2949 19.5181 18.2368 19.4937 18.2053 19.4419C17.6743 18.557 17.9653 17.9394 21.7082 15.6009C25.4511 13.2617 28.0783 11.8545 26.5841 10.1752C26.4121 9.98141 26.1684 9.8956 25.8725 9.8956C23.6001 9.89634 18.2311 14.9403 18.2311 14.9403C18.2311 14.9403 16.7821 16.496 15.9057 16.496C15.7043 16.496 15.533 16.4139 15.4169 16.2112C14.7956 15.1296 21.1879 10.1286 21.5484 8.06535C21.7928 6.66715 21.3771 5.95917 20.6081 5.95917Z" fill="#FF9D00"></path>
                <path d="M5.50686 24.2246C3.53472 21.2387 3.67446 18.9979 6.38043 16.206C9.08641 13.4147 10.6615 9.33111 10.6615 9.33111C10.6615 9.33111 11.2499 6.95933 12.59 7.17757C13.93 7.39581 14.9139 10.9401 12.1069 13.1084C9.29997 15.276 12.6659 16.7489 13.7459 14.713C14.8258 12.6772 17.7747 7.44316 19.304 6.44221C20.8326 5.44128 21.9089 6.00204 21.5484 8.06532C21.188 10.1286 14.795 15.1295 15.4171 16.2118C16.0391 17.2934 18.2312 14.9402 18.2312 14.9402C18.2312 14.9402 25.0907 8.49588 26.5842 10.1752C28.0776 11.8545 25.4512 13.2616 21.7082 15.6008C17.9646 17.9393 17.6744 18.557 18.2054 19.4418C18.7372 20.3266 26.9998 13.1351 27.7759 16.1838C28.5513 19.2324 19.3434 20.1173 19.9117 22.2219C20.48 24.3274 26.3979 18.2382 27.6082 20.6107C28.8193 22.9839 19.2574 25.7722 19.18 25.7929C16.0914 26.62 8.24723 28.3726 5.50686 24.2246Z" fill="#FFD21E"></path>
            </svg>
            """
        )
        loading_icon = gr.HTML(
            """
            <svg id="share-btn-loading-icon" style="display:none;" class="animate-spin" style="color: #ffffff;" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24">
                <circle style="opacity: 0.25;" cx="12" cy="12" r="10" stroke="white" stroke-width="4"></circle>
                <path style="opacity: 0.75;" fill="white" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
            </svg>
            """
        )
        share_button = gr.Button(
            "Share to community",
            elem_id="share-btn"
        )
    examples = gr.Examples(
        examples=[
            [
                'girl, cafe, plants, coffee, lighting, steam, blue eyes, brown hair',
                'low quality'
            ],
            [
                'boy, blonde hair, blue eyes, colorful, cumulonimbus clouds, lighting, medium hair, plants, city, hoodie, cool',
                'low quality'
            ],
            [
                'cityscape, concept art, sun shining through clouds, crepuscular rays, trending on art station, 8k',
                'low quality'
            ]
        ],
        inputs=[
            prompt,
            negative
        ]
    )

    prompt.submit(
        fn=infer,
        inputs=[
            prompt,
            negative,
            samples,
            steps,
            guidance_scale,
            seed
        ],
        outputs=gallery
    )
    negative.submit(
        fn=infer,
        inputs=[
            prompt,
            negative,
            samples,
            steps,
            guidance_scale,
            seed
        ],
        outputs=gallery
    )
    generate_button.click(
        fn=infer,
        inputs=[
            prompt,
            negative,
            samples,
            steps,
            guidance_scale,
            seed
        ],
        outputs=gallery
    )
    share_button.click(
        fn=None,
        inputs=[],
        outputs=[],
        _js="""
        async () => {
            async function uploadFile(file){
                const UPLOAD_URL = 'https://huggingface.co/uploads';
                const response = await fetch(UPLOAD_URL, {
                    method: 'POST',
                    headers: {
                        'Content-Type': file.type,
                        'X-Requested-With': 'XMLHttpRequest',
                    },
                    body: file, /// <- File inherits from Blob
                });
                const url = await response.text();
                return url;
            }
            const gradioEl = document.querySelector('body > gradio-app');
            const imgEls = gradioEl.querySelectorAll('#gallery img');
            const promptTxt = gradioEl.querySelector('#prompt-text-input input').value;
            const shareBtnEl = gradioEl.querySelector('#share-btn');
            const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
            const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
            if(!imgEls.length){
                return;
            };
            shareBtnEl.style.pointerEvents = 'none';
            shareIconEl.style.display = 'none';
            loadingIconEl.style.removeProperty('display');
            const files = await Promise.all(
                [...imgEls].map(async (imgEl) => {
                    const res = await fetch(imgEl.src);
                    const blob = await res.blob();
                    const imgId = Date.now() % 200;
                    const fileName = `diffuse-the-rest-${{imgId}}.jpg`;
                    return new File([blob], fileName, { type: 'image/jpeg' });
                })
            );
            const urls = await Promise.all(files.map((f) => uploadFile(f)));
            const htmlImgs = urls.map(url => `<img src='${url}' width='400' height='400'>`);
            const descriptionMd = `<div style='display: flex; flex-wrap: wrap; column-gap: 0.75rem;'>
        ${htmlImgs.join(`\n`)}
        </div>`;
            const params = new URLSearchParams({
                title: promptTxt,
                description: descriptionMd,
            });
            const paramsStr = params.toString();
            window.open(`https://huggingface.co/spaces/stabilityai/stable-diffusion/discussions/new?${paramsStr}`, '_blank');
            shareBtnEl.style.removeProperty('pointer-events');
            shareIconEl.style.removeProperty('display');
            loadingIconEl.style.display = 'none';
        }
        """,
    )
    examples.dataset.headers = [""]

    gr.Markdown(
        """
        <hr style="margin-top: 3em;" />

        #### LICENSE
        The model is licensed with a <a href="https://huggingface.co/Maseshi/Animistatics/blob/main/LICENSE-MODEL" style="text-decoration: underline;" target="_blank">CreativeML Open RAIL-M</a> license. The authors claim no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in this license. The license forbids you from sharing any content that violates any laws, produce any harm to a person, disseminate any personal information that would be meant for harm, spread misinformation and target vulnerable groups. For the full list of restrictions please <a href="https://huggingface.co/spaces/CompVis/stable-diffusion-license" target="_blank" style="text-decoration: underline;" target="_blank">read the license</a>
            
        #### Biases and content acknowledgment
        Despite how impressive being able to turn text into image is, beware to the fact that this model may output content that reinforces or exacerbates societal biases, as well as realistic faces, pornography and violence. The model was trained on the Anime dataset, which scraped non-curated image-text-pairs from the internet (the exception being the removal of illegal content) and is meant for research purposes. You can read more in the <a href="https://huggingface.co/Maseshi/Animistatics" style="text-decoration: underline;" target="_blank">model card</a>
        """
    )

# Launch Gradio
demo.queue(
    api_open=False,
    max_size=150
)
demo.launch(
    max_threads=150,
    show_api=False
)