File size: 1,969 Bytes
e51143a
 
 
 
 
 
 
 
 
 
 
91d8eda
e51143a
 
 
ec393cf
e51143a
 
 
 
 
ec393cf
e51143a
ec393cf
e51143a
 
ec393cf
 
 
85986ce
 
48a541f
 
85986ce
 
 
ec393cf
 
 
 
48a541f
85986ce
 
ec393cf
 
85986ce
b4bbb82
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
from huggingface_hub import from_pretrained_keras
import keras_cv
import gradio as gr
from tensorflow import keras

keras.mixed_precision.set_global_policy("mixed_float16")
# load keras model
resolution = 512
dreambooth_model = keras_cv.models.StableDiffusion(
        img_width=resolution, img_height=resolution, jit_compile=True, 
    )
loaded_diffusion_model = from_pretrained_keras("keras-dreambooth/marvin_paranoid_android")
dreambooth_model._diffusion_model = loaded_diffusion_model


def generate_images(prompt: str, negative_prompt: str, num_imgs_to_gen: int, num_steps: int, guidance_scale: float):
    generated_img = dreambooth_model.text_to_image(
        prompt, 
        negative_prompt=negative_prompt,
        batch_size=num_imgs_to_gen,
        num_steps=num_steps,
        unconditional_guidance_scale=guidance_scale,
    )

    return generated_img


# pass function, input type for prompt, the output for multiple images
gr.Interface(
    title="Keras Dreambooth - Marvin the Paranoid Android",
    description="""This SD model has been fine-tuned to learn the concept of Marvin the Paranoid Android from The Hitchhiker's Guide to the Galaxy.

    To generate your own Marvin, use the phrase 'paranoid marvin a robot' in your prompt.
    """,
    fn=generate_images,
    inputs=[
        gr.Textbox(label="Positive Prompt", value="a photo of paranoid marvin a robot"),
        gr.Textbox(label="Negative Prompt", value="low quality, deformed"),
        gr.Slider(label='Number of gen image', minimum=1, maximum=4, value=2, step=1),
        gr.Slider(label="Inference Steps", value=50),
        gr.Slider(label='Guidance scale', value=7.5, maximum=15, minimum=0, step=0.5),
    ], 
    outputs=[
        gr.Gallery(show_label=False).style(grid=(1,2)),
    ],
    examples=[["a drawing of a white lowpoly paranoid marvin a robot, high quality, 4k, trending on artstation", "low quality, deformed, dark", 2, 50, 7.5]],
    ).queue().launch(debug=True)