lint commited on
Commit
c4bf276
·
1 Parent(s): 4dfb555

Upload folder using huggingface_hub

Browse files
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__/__init__.cpython-310.pyc ADDED
Binary file (143 Bytes). View file
 
__pycache__/gradify.cpython-310.pyc ADDED
Binary file (1.06 kB). View file
 
demo.yaml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ lite_metadata:
2
+ gradio_version: 3.32.0
3
+ class_string: gradio.interface.Interface
4
+ kwargs:
5
+ title: Gradio Webapp
6
+ description: Given an array of distinct integers candidates and a target integer
7
+ target, return a list of all unique combinations of candidates where the chosen
8
+ numbers sum to target
9
+ article: null
10
+ thumbnail: null
11
+ theme: gradio/seafoam
12
+ css: null
13
+ allow_flagging: never
14
+ inputs:
15
+ class_string: liteobj.listify
16
+ args:
17
+ - class_string: gradio.components.Dataframe
18
+ kwargs:
19
+ label: candidates
20
+ type: array
21
+ - class_string: gradio.components.Number
22
+ kwargs:
23
+ label: target
24
+ precision: 0
25
+ outputs:
26
+ class_string: liteobj.listify
27
+ args:
28
+ - class_string: gradio.components.Dataframe
29
+ kwargs:
30
+ label: output
31
+ type: array
32
+ fn:
33
+ class_string: gradify.gradify_closure
34
+ kwargs:
35
+ argmaps:
36
+ class_string: liteobj.listify
37
+ args:
38
+ - label: candidates
39
+ postprocessing: 'lambda array: list(map(int, array[0]))'
40
+ - label: target
41
+ postprocessing: null
42
+ func_kwargs: {}
43
+ ldict:
44
+ class_string: gradify.exec_to_dict
45
+ kwargs:
46
+ source: "def combinationSum(candidates, target):\n res = []\n\n def\
47
+ \ backtrack(start, path, target):\n if target == 0:\n \
48
+ \ res.append(path)\n return\n for i in range(start,\
49
+ \ len(candidates)):\n if candidates[i] > target:\n \
50
+ \ break\n backtrack(i, path + [candidates[i]], target\
51
+ \ - candidates[i])\n backtrack(0, [], target)\n return res\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