Spaces:
Building
on
A10G
Building
on
A10G
Update diffusion_webui/stable_diffusion/keras_txt2img.py
Browse files
diffusion_webui/stable_diffusion/keras_txt2img.py
CHANGED
@@ -4,13 +4,15 @@ from tensorflow import keras
|
|
4 |
import tensorflow as tf
|
5 |
import gradio as gr
|
6 |
|
7 |
-
|
8 |
-
"
|
|
|
|
|
9 |
]
|
10 |
|
11 |
stable_prompt_list = [
|
12 |
-
"a photo of
|
13 |
-
"
|
14 |
]
|
15 |
|
16 |
stable_negative_prompt_list = [
|
@@ -53,8 +55,8 @@ def keras_stable_diffusion_app():
|
|
53 |
with gr.Row():
|
54 |
with gr.Column():
|
55 |
keras_text2image_model_path = gr.Dropdown(
|
56 |
-
choices=
|
57 |
-
value=
|
58 |
label='Text-Image Model Id'
|
59 |
)
|
60 |
|
|
|
4 |
import tensorflow as tf
|
5 |
import gradio as gr
|
6 |
|
7 |
+
keras_model_list = [
|
8 |
+
"kadirnar/dreambooth_diffusion_model_v1",
|
9 |
+
"keras-dreambooth/pink-floyd-division-bell"
|
10 |
+
"keras-dreambooth/dreambooth_diffusion_model",
|
11 |
]
|
12 |
|
13 |
stable_prompt_list = [
|
14 |
+
"a photo of lowpoly_world",
|
15 |
+
"Flower vase inspired by pink floyd division bell"
|
16 |
]
|
17 |
|
18 |
stable_negative_prompt_list = [
|
|
|
55 |
with gr.Row():
|
56 |
with gr.Column():
|
57 |
keras_text2image_model_path = gr.Dropdown(
|
58 |
+
choices=keras_model_list,
|
59 |
+
value=keras_model_list[0],
|
60 |
label='Text-Image Model Id'
|
61 |
)
|
62 |
|