Spaces:
Running
Running
Upload with huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +6 -6
- __pycache__/run.cpython-36.pyc +0 -0
- app.py +17 -0
- images/cheetah1.jpg +0 -0
- images/lion.jpg +0 -0
- images/logo.png +0 -0
- screenshot.png +3 -0
.gitattributes
CHANGED
@@ -29,3 +29,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
29 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
30 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
31 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
29 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
30 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
31 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
32 |
+
screenshot.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 3.3.1
|
|
|
8 |
app_file: app.py
|
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
|
4 |
+
emoji: 🔥
|
5 |
+
colorFrom: indigo
|
6 |
+
colorTo: indigo
|
7 |
sdk: gradio
|
8 |
sdk_version: 3.3.1
|
9 |
+
|
10 |
app_file: app.py
|
11 |
pinned: false
|
12 |
---
|
|
|
|
__pycache__/run.cpython-36.pyc
ADDED
Binary file (444 Bytes). View file
|
|
app.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()
|
images/cheetah1.jpg
ADDED
images/lion.jpg
ADDED
images/logo.png
ADDED
screenshot.png
ADDED
Git LFS Details
|