Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files- __pycache__/gradify.cpython-310.pyc +0 -0
- demo.yaml +12 -17
- requirements.txt +1 -1
__pycache__/gradify.cpython-310.pyc
CHANGED
Binary files a/__pycache__/gradify.cpython-310.pyc and b/__pycache__/gradify.cpython-310.pyc differ
|
|
demo.yaml
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
lite_metadata:
|
2 |
gradio_version: 3.32.0
|
|
|
3 |
class_string: gradio.interface.Interface
|
4 |
kwargs:
|
5 |
-
title:
|
6 |
description: Given a pil image, apply a sepia filter
|
7 |
article: null
|
8 |
thumbnail: null
|
@@ -10,27 +11,21 @@ kwargs:
|
|
10 |
css: null
|
11 |
allow_flagging: never
|
12 |
inputs:
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
label: image
|
18 |
-
type: pil
|
19 |
outputs:
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
label: output
|
25 |
-
type: pil
|
26 |
fn:
|
27 |
class_string: gradify.gradify_closure
|
28 |
kwargs:
|
29 |
argmaps:
|
30 |
-
|
31 |
-
|
32 |
-
- label: image
|
33 |
-
postprocessing: null
|
34 |
func_kwargs: {}
|
35 |
ldict:
|
36 |
class_string: gradify.exec_to_dict
|
|
|
1 |
lite_metadata:
|
2 |
gradio_version: 3.32.0
|
3 |
+
liteobj_version: 0.0.7
|
4 |
class_string: gradio.interface.Interface
|
5 |
kwargs:
|
6 |
+
title: gitio image filter
|
7 |
description: Given a pil image, apply a sepia filter
|
8 |
article: null
|
9 |
thumbnail: null
|
|
|
11 |
css: null
|
12 |
allow_flagging: never
|
13 |
inputs:
|
14 |
+
- class_string: gradio.components.Image
|
15 |
+
kwargs:
|
16 |
+
label: image
|
17 |
+
type: pil
|
|
|
|
|
18 |
outputs:
|
19 |
+
- class_string: gradio.components.Image
|
20 |
+
kwargs:
|
21 |
+
label: output
|
22 |
+
type: pil
|
|
|
|
|
23 |
fn:
|
24 |
class_string: gradify.gradify_closure
|
25 |
kwargs:
|
26 |
argmaps:
|
27 |
+
- label: image
|
28 |
+
postprocessing: null
|
|
|
|
|
29 |
func_kwargs: {}
|
30 |
ldict:
|
31 |
class_string: gradify.exec_to_dict
|
requirements.txt
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
gradio==3.32
|
2 |
-
liteobj==0.0.
|
|
|
1 |
gradio==3.32
|
2 |
+
liteobj==0.0.7
|