lint commited on
Commit
d5c39c8
·
1 Parent(s): 7ed9968

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. Dockerfile +23 -0
  2. __pycache__/gradify.cpython-310.pyc +0 -0
  3. demo.yaml +43 -0
  4. gradify.py +38 -0
  5. requirements.txt +2 -0
Dockerfile ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10
2
+
3
+ WORKDIR /code
4
+
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+
9
+ # Set up a new user named "user" with user ID 1000
10
+ RUN useradd -m -u 1000 user
11
+ # Switch to the "user" user
12
+ USER user
13
+ # Set home to the user's home directory
14
+ ENV HOME=/home/user \
15
+ PATH=/home/user/.local/bin:$PATH
16
+
17
+ # Set the working directory to the user's home directory
18
+ WORKDIR $HOME/app
19
+
20
+ # Copy the current directory contents into the container at $HOME/app setting the owner to the user
21
+ COPY --chown=user . $HOME/app
22
+
23
+ CMD ["lite", "demo.yaml", "launch", "--server_name", "0.0.0.0", "--server_port", "7860"]
__pycache__/gradify.cpython-310.pyc ADDED
Binary file (1.06 kB). View file
 
demo.yaml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ lite_metadata:
2
+ gradio_version: 3.32.0
3
+ class_string: gradio.interface.Interface
4
+ kwargs:
5
+ title: Gradio Webapp
6
+ description: 'Compare two input png images '
7
+ article: null
8
+ thumbnail: null
9
+ theme: gradio/seafoam
10
+ css: null
11
+ allow_flagging: never
12
+ inputs:
13
+ class_string: liteobj.listify
14
+ args:
15
+ - class_string: gradio.components.Textbox
16
+ kwargs:
17
+ label: image1
18
+ - class_string: gradio.components.Textbox
19
+ kwargs:
20
+ label: image2
21
+ outputs:
22
+ class_string: liteobj.listify
23
+ args:
24
+ - class_string: gradio.components.Checkbox
25
+ kwargs:
26
+ label: output
27
+ fn:
28
+ class_string: gradify.gradify_closure
29
+ kwargs:
30
+ argmaps:
31
+ class_string: liteobj.listify
32
+ args:
33
+ - label: image1
34
+ postprocessing: null
35
+ - label: image2
36
+ postprocessing: null
37
+ func_kwargs: {}
38
+ ldict:
39
+ class_string: gradify.exec_to_dict
40
+ kwargs:
41
+ source: "from PIL import Image\n\n\ndef compare_images(image1, image2):\n\
42
+ \ img1 = Image.open(image1)\n img2 = Image.open(image2)\n return\
43
+ \ img1.tobytes() == img2.tobytes()\n"
gradify.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ def gradify_closure(ldict, argmaps, func_kwargs={}):
4
+
5
+ from types import FunctionType
6
+ for k, v in ldict.items():
7
+ if isinstance(v, FunctionType):
8
+ func = ldict.pop(k)
9
+ break
10
+
11
+ globals().update(ldict)
12
+ func_kwargs = dict(func_kwargs)
13
+
14
+ def gradify_func(*args):
15
+
16
+ try:
17
+ for (arg, argmap) in zip(args, argmaps):
18
+
19
+ postprocessing = argmap.get("postprocessing", None)
20
+ if postprocessing:
21
+ arg = eval(postprocessing)(arg)
22
+
23
+ kw_label = argmap["label"]
24
+ func_kwargs[kw_label] = arg
25
+
26
+ return func(**func_kwargs)
27
+ except Exception as e:
28
+ import gradio as gr
29
+ raise gr.Error(f"Error: {e}")
30
+
31
+ return gradify_func
32
+
33
+ def exec_to_dict(source, target=None):
34
+
35
+ ldict = {}
36
+ exec(source, globals(), ldict)
37
+
38
+ return ldict.get(target, None) if target else ldict
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ gradio==3.32
2
+ liteobj==0.0.4