Spaces:
Sleeping
Sleeping
Commit
·
56d4dc6
1
Parent(s):
de293c0
fix example file ext
Browse files
app.py
CHANGED
@@ -147,7 +147,7 @@ def pred_fn(image, fake=False):
|
|
147 |
return cropped_image, response_str
|
148 |
|
149 |
|
150 |
-
examples = [str(image_root / f'negative{i:03d}') for i in range(3)]
|
151 |
|
152 |
demo = gr.Interface(fn=pred_fn, inputs="image", outputs=["image", "text"],
|
153 |
examples=examples)
|
|
|
147 |
return cropped_image, response_str
|
148 |
|
149 |
|
150 |
+
examples = [str(image_root / f'negative{i:03d}.jpg') for i in range(3)]
|
151 |
|
152 |
demo = gr.Interface(fn=pred_fn, inputs="image", outputs=["image", "text"],
|
153 |
examples=examples)
|