Spaces:
Runtime error
Runtime error
Upload with huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +5 -6
- __pycache__/run.cpython-36.pyc +0 -0
- images/cheetah1.jpg +0 -0
- images/lion.jpg +0 -0
- images/logo.png +0 -0
- requirements.txt +1 -0
- run.py +17 -0
- screenshot.png +3 -0
.gitattributes
CHANGED
|
@@ -31,3 +31,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 31 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 32 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
screenshot.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: indigo
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 3.6
|
| 8 |
-
app_file:
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
+
title: image_mod_main
|
| 4 |
+
emoji: 🔥
|
| 5 |
colorFrom: indigo
|
| 6 |
+
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 3.6
|
| 9 |
+
app_file: run.py
|
| 10 |
pinned: false
|
| 11 |
---
|
|
|
|
|
|
__pycache__/run.cpython-36.pyc
ADDED
|
Binary file (444 Bytes). View file
|
|
|
images/cheetah1.jpg
ADDED
|
images/lion.jpg
ADDED
|
images/logo.png
ADDED
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
https://gradio-main-build.s3.amazonaws.com/c3bec6153737855510542e8154391f328ac72606/gradio-3.6-py3-none-any.whl
|
run.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
import os
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
def image_mod(image):
|
| 6 |
+
return image.rotate(45)
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
demo = gr.Interface(image_mod, gr.Image(type="pil"), "image",
|
| 10 |
+
flagging_options=["blurry", "incorrect", "other"], examples=[
|
| 11 |
+
os.path.join(os.path.dirname(__file__), "images/cheetah1.jpg"),
|
| 12 |
+
os.path.join(os.path.dirname(__file__), "images/lion.jpg"),
|
| 13 |
+
os.path.join(os.path.dirname(__file__), "images/logo.png")
|
| 14 |
+
])
|
| 15 |
+
|
| 16 |
+
if __name__ == "__main__":
|
| 17 |
+
demo.launch()
|
screenshot.png
ADDED
|
Git LFS Details
|