Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -141,37 +141,37 @@ with gr.Blocks(css=css, title="ZenCtrl Inpainting") as demo:
|
|
| 141 |
|
| 142 |
examples = [
|
| 143 |
[
|
| 144 |
-
|
| 145 |
-
{"image":
|
| 146 |
-
"mask": None},
|
| 147 |
"add the sofa"
|
| 148 |
],
|
| 149 |
[
|
| 150 |
-
|
| 151 |
-
{"image":
|
| 152 |
"add this sofa"
|
| 153 |
],
|
| 154 |
[
|
| 155 |
-
|
| 156 |
-
{"image":
|
| 157 |
"add the chair"
|
| 158 |
],
|
| 159 |
[
|
| 160 |
-
|
| 161 |
-
{"image":
|
| 162 |
-
"Scandinavian console table against a gallery-style wall filled with abstract framed art
|
| 163 |
],
|
| 164 |
[
|
| 165 |
-
|
| 166 |
-
{"image":
|
| 167 |
"office chair"
|
| 168 |
],
|
| 169 |
[
|
| 170 |
-
|
| 171 |
-
{"image":
|
| 172 |
"car on the road"
|
| 173 |
],
|
| 174 |
]
|
|
|
|
| 175 |
|
| 176 |
# ---------- Examples block ------------------------
|
| 177 |
gr.Examples(
|
|
|
|
| 141 |
|
| 142 |
examples = [
|
| 143 |
[
|
| 144 |
+
"examples/sofa1.png",
|
| 145 |
+
{"image": "examples/sofa1_bg.png", "mask": None},
|
|
|
|
| 146 |
"add the sofa"
|
| 147 |
],
|
| 148 |
[
|
| 149 |
+
"examples/sofa2.png",
|
| 150 |
+
{"image": "examples/sofa2_bg.png", "mask": None},
|
| 151 |
"add this sofa"
|
| 152 |
],
|
| 153 |
[
|
| 154 |
+
"examples/chair1.png",
|
| 155 |
+
{"image": "examples/chair1_bg.png", "mask": None},
|
| 156 |
"add the chair"
|
| 157 |
],
|
| 158 |
[
|
| 159 |
+
"examples/console_table.png",
|
| 160 |
+
{"image": "examples/console_table_bg.png", "mask": None},
|
| 161 |
+
"Scandinavian console table against a gallery-style wall filled with abstract framed art"
|
| 162 |
],
|
| 163 |
[
|
| 164 |
+
"examples/office_chair.png",
|
| 165 |
+
{"image": "examples/office_chair_bg.png", "mask": None},
|
| 166 |
"office chair"
|
| 167 |
],
|
| 168 |
[
|
| 169 |
+
"examples/car.png",
|
| 170 |
+
{"image": "examples/car_bg.png", "mask": None},
|
| 171 |
"car on the road"
|
| 172 |
],
|
| 173 |
]
|
| 174 |
+
|
| 175 |
|
| 176 |
# ---------- Examples block ------------------------
|
| 177 |
gr.Examples(
|