Update app.py
Browse files
app.py
CHANGED
|
@@ -7,9 +7,7 @@ def image_mod(image):
|
|
| 7 |
return image.rotate(45)
|
| 8 |
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
demo = gr.Interface(image_mod, gr.Image(type="pil", value=cheetah), "image",
|
| 13 |
flagging_options=["blurry", "incorrect", "other"], examples=[
|
| 14 |
os.path.join(os.path.dirname(__file__), "images/dog.png"),
|
| 15 |
])
|
|
|
|
| 7 |
return image.rotate(45)
|
| 8 |
|
| 9 |
|
| 10 |
+
demo = gr.Interface(image_mod, gr.Image(type="pil"), "image",
|
|
|
|
|
|
|
| 11 |
flagging_options=["blurry", "incorrect", "other"], examples=[
|
| 12 |
os.path.join(os.path.dirname(__file__), "images/dog.png"),
|
| 13 |
])
|