viktor-kertanov commited on
Commit
de012bd
1 Parent(s): c2eace3

Gradio app initial test for impressionists model

Browse files
Files changed (3) hide show
  1. .gitignore +1 -0
  2. app.py +7 -0
  3. requirements.txt +67 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ env
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()
requirements.txt ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aiofiles==23.1.0
2
+ aiohttp==3.8.4
3
+ aiosignal==1.3.1
4
+ altair==5.0.1
5
+ annotated-types==0.5.0
6
+ anyio==3.7.1
7
+ async-timeout==4.0.2
8
+ attrs==23.1.0
9
+ certifi==2023.5.7
10
+ charset-normalizer==3.2.0
11
+ click==8.1.4
12
+ contourpy==1.1.0
13
+ cycler==0.11.0
14
+ fastapi==0.100.0
15
+ ffmpy==0.3.0
16
+ filelock==3.12.2
17
+ fonttools==4.40.0
18
+ frozenlist==1.3.3
19
+ fsspec==2023.6.0
20
+ gradio==3.36.1
21
+ gradio_client==0.2.8
22
+ h11==0.14.0
23
+ httpcore==0.17.3
24
+ httpx==0.24.1
25
+ huggingface-hub==0.16.4
26
+ idna==3.4
27
+ Jinja2==3.1.2
28
+ jsonschema==4.18.0
29
+ jsonschema-specifications==2023.6.1
30
+ kiwisolver==1.4.4
31
+ linkify-it-py==2.0.2
32
+ markdown-it-py==2.2.0
33
+ MarkupSafe==2.1.3
34
+ matplotlib==3.7.2
35
+ mdit-py-plugins==0.3.3
36
+ mdurl==0.1.2
37
+ multidict==6.0.4
38
+ numpy==1.25.1
39
+ orjson==3.9.2
40
+ packaging==23.1
41
+ pandas==2.0.3
42
+ Pillow==10.0.0
43
+ pydantic==2.0.2
44
+ pydantic_core==2.1.2
45
+ pydub==0.25.1
46
+ Pygments==2.15.1
47
+ pyparsing==3.0.9
48
+ python-dateutil==2.8.2
49
+ python-multipart==0.0.6
50
+ pytz==2023.3
51
+ PyYAML==6.0
52
+ referencing==0.29.1
53
+ requests==2.31.0
54
+ rpds-py==0.8.10
55
+ semantic-version==2.10.0
56
+ six==1.16.0
57
+ sniffio==1.3.0
58
+ starlette==0.27.0
59
+ toolz==0.12.0
60
+ tqdm==4.65.0
61
+ typing_extensions==4.7.1
62
+ tzdata==2023.3
63
+ uc-micro-py==1.0.2
64
+ urllib3==2.0.3
65
+ uvicorn==0.22.0
66
+ websockets==11.0.3
67
+ yarl==1.9.2