File size: 2,365 Bytes
424ba8f
018cdd6
6dceec4
424ba8f
 
 
018cdd6
424ba8f
018cdd6
 
 
0598263
018cdd6
 
424ba8f
018cdd6
 
 
 
 
 
 
 
 
 
 
 
3e69641
018cdd6
 
6dceec4
018cdd6
 
 
 
 
 
 
5a4c5ac
 
 
e408a82
018cdd6
 
96f0bf2
018cdd6
 
424ba8f
cfedd56
d13286c
018cdd6
6dceec4
018cdd6
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
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/keras-diffusion-traditional-furniture")
dreambooth_model._diffusion_model = loaded_diffusion_model


def generate_images(prompt: str, negative_prompt:str, num_imgs_to_gen: int, num_steps: int):
    """
    This function is used to generate images using our fine-tuned keras dreambooth stable diffusion model.
    Args:
        prompt (str): The text input given by the user based on which images will be generated.
        num_imgs_to_gen (int): The number of images to be generated using given prompt.
        num_steps (int): The number of denoising steps
    Returns:
        generated_img (List): List of images that were generated using the model
    """
    generated_img = dreambooth_model.text_to_image(
        prompt, 
        negative_prompt=negative_prompt,
        batch_size=num_imgs_to_gen,
        num_steps=num_steps,
    )
   
    return generated_img
    
with gr.Blocks() as demo:
    gr.HTML("<h2 style=\"font-size: 2em; font-weight: bold\" align=\"center\">Keras Dreambooth - Traditional Furniture Demo</h2>")    
    with gr.Row():
        with gr.Column():
            prompt = gr.Textbox(lines=1, value="sks traditional furniture", label="Base Prompt")
            negative_prompt = gr.Textbox(lines=1, value="deformed", label="Negative Prompt")
            samples = gr.Slider(minimum=1, maximum=10, default=1, step=1, label="Number of Image")
            num_steps = gr.Slider(label="Inference Steps",value=50)
            run = gr.Button(value="Run")
        with gr.Column():
            gallery = gr.Gallery(label="Outputs").style(grid=(1,2))

    run.click(generate_images, inputs=[prompt,negative_prompt, samples, num_steps], outputs=gallery)
    
    gr.Examples([["photo of traditional furniture","deformed", 1, 50]],
                [prompt,negative_prompt, samples,num_steps], gallery, generate_images)
    gr.Markdown('\n Demo created by: <a href=\"https://huggingface.co/kadirnar/\">Kadir Nar</a>')

demo.launch(debug=True)