aliabd HF staff commited on
Commit
e07924a
1 Parent(s): a908568

Upload with huggingface_hub

Browse files
.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: Image Mod
3
- emoji:
4
- colorFrom: green
5
- colorTo: green
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

  • SHA256: f9e12c6742252fc970c3983e6691050d55034d40d1b553b93a94eb9b5c94c6e9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.11 MB