Jacob Logas commited on
Commit
0effd51
·
unverified ·
1 Parent(s): d2ebc6b

Further fixing

Browse files
Files changed (6) hide show
  1. Dockerfile +9 -6
  2. Dockerfile.bkup +0 -18
  3. app.py +4 -4
  4. environment.yaml +0 -123
  5. requirements.txt +2 -95
  6. requirements_personal.txt +0 -2
Dockerfile CHANGED
@@ -2,22 +2,25 @@ FROM python:3.7-slim as builder
2
 
3
  RUN apt update && \
4
  apt install --no-install-recommends -y build-essential gcc
5
- COPY requirements_personal.txt /req.txt
 
6
 
7
  RUN python -m pip install --upgrade pip && \
8
- pip install --no-cache-dir --no-warn-script-location --user -r req.txt && \
9
  pip install --no-cache-dir --no-warn-script-location --user typing-extensions -U
10
 
11
  # Stage 2: Runtime
12
  FROM nvidia/cuda:11.0.3-cudnn8-runtime
 
 
13
 
14
- RUN rm /etc/apt/sources.list.d/cuda.list
15
- RUN rm /etc/apt/sources.list.d/nvidia-ml.list
16
 
17
- ENV TZ=America/New_York
18
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
19
 
20
  RUN apt update && \
 
21
  apt install --no-install-recommends -y build-essential software-properties-common libgl1-mesa-glx && \
22
  add-apt-repository -y ppa:deadsnakes/ppa && \
23
  apt install --no-install-recommends -y python3.7 python3.7-distutils && \
@@ -29,5 +32,5 @@ COPY app.py app.py
29
 
30
  # RUN ln -s /usr/local/cuda/lib64/libcusolver.so.11 /usr/local/cuda/lib64/libcusolver.so.10
31
 
32
- CMD ["python3", "app.py"]
33
  EXPOSE 7860
 
2
 
3
  RUN apt update && \
4
  apt install --no-install-recommends -y build-essential gcc
5
+
6
+ COPY requirements.txt /requirements.txt
7
 
8
  RUN python -m pip install --upgrade pip && \
9
+ pip install --no-cache-dir --no-warn-script-location --user -r requirements.txt && \
10
  pip install --no-cache-dir --no-warn-script-location --user typing-extensions -U
11
 
12
  # Stage 2: Runtime
13
  FROM nvidia/cuda:11.0.3-cudnn8-runtime
14
+ ENV GRADIO_SERVER_NAME=0.0.0.0
15
+ ENV TZ=America/New_York
16
 
17
+ RUN rm /etc/apt/sources.list.d/cuda.list && \
18
+ rm /etc/apt/sources.list.d/nvidia-ml.list
19
 
 
20
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
21
 
22
  RUN apt update && \
23
+ apt remove -y python3 python
24
  apt install --no-install-recommends -y build-essential software-properties-common libgl1-mesa-glx && \
25
  add-apt-repository -y ppa:deadsnakes/ppa && \
26
  apt install --no-install-recommends -y python3.7 python3.7-distutils && \
 
32
 
33
  # RUN ln -s /usr/local/cuda/lib64/libcusolver.so.11 /usr/local/cuda/lib64/libcusolver.so.10
34
 
35
+ CMD ["python3", "-u", "app.py"]
36
  EXPOSE 7860
Dockerfile.bkup DELETED
@@ -1,18 +0,0 @@
1
- FROM continuumio/miniconda3
2
- EXPOSE 7860
3
-
4
- RUN apt-get update && \
5
- apt-get install -y --no-install-recommends libgl1-mesa-glx && \
6
- apt-get install -y --no-install-recommends libglib2.0-0 && \
7
- apt-get clean && \
8
- rm -rf /var/lib/apt/lists/*
9
-
10
- ENV GRADIO_SERVER_NAME=0.0.0.0
11
- WORKDIR /workspace
12
-
13
- ADD environment.yaml /workspace/environment.yaml
14
- RUN conda env update -n base --file environment.yaml && \
15
- pip install typing-extensions -U
16
-
17
- ADD app.py /workspace/
18
- CMD [ "python" , "/workspace/app.py" ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app.py CHANGED
@@ -2,7 +2,7 @@ from fawkes.protection import Fawkes
2
  import gradio as gr
3
  import os
4
 
5
- def predict(level, img):
6
  # print(img)
7
  fwks = Fawkes("extractor_2", '0', 1, mode=level)
8
  fwks.run_protection([img], format='jpeg')
@@ -10,6 +10,6 @@ def predict(level, img):
10
  print(os.listdir('/tmp'))
11
  return splt[0] + "_cloaked.jpeg"
12
 
13
- gr.Interface(fn=predict, inputs=[gr.components.Dropdown(["low", "mid", "high"], label="Protection Level"),
14
- gr.components.Image(type='filepath')],
15
- outputs=gr.components.Image(type="pil")).launch(show_error=True, server_name="0.0.0.0")
 
2
  import gradio as gr
3
  import os
4
 
5
+ def predict(img, level):
6
  # print(img)
7
  fwks = Fawkes("extractor_2", '0', 1, mode=level)
8
  fwks.run_protection([img], format='jpeg')
 
10
  print(os.listdir('/tmp'))
11
  return splt[0] + "_cloaked.jpeg"
12
 
13
+ gr.Interface(fn=predict, inputs=[gr.components.Image(type='filepath'),
14
+ gr.components.Radio(["low", "mid", "high"], label="Protection Level")],
15
+ outputs=gr.components.Image(type="pil"), allow_flagging="never").launch(show_error=True, quiet=False)
environment.yaml DELETED
@@ -1,123 +0,0 @@
1
- name: gradio
2
- channels:
3
- - nvidia
4
- - conda-forge
5
- - defaults
6
- dependencies:
7
- - _libgcc_mutex=0.1=main
8
- - _openmp_mutex=5.1=1_gnu
9
- - ca-certificates=2022.9.24=ha878542_0
10
- - certifi=2022.9.24=pyhd8ed1ab_0
11
- - cudatoolkit=11.0.221=h6bb024c_0
12
- - cudnn=8.0.4=cuda11.0_0
13
- - libedit=3.1.20210910=h7f8727e_0
14
- - libffi=3.2.1=hf484d3e_1007
15
- - libgcc-ng=11.2.0=h1234567_1
16
- - libgomp=11.2.0=h1234567_1
17
- - libstdcxx-ng=11.2.0=h1234567_1
18
- - ncurses=6.3=h5eee18b_3
19
- - openssl=1.1.1o=h166bdaf_0
20
- - pip=22.2.2=py38h06a4308_0
21
- - python=3.8.0=h0371630_2
22
- - readline=7.0=h7b6447c_5
23
- - setuptools=63.4.1=py38h06a4308_0
24
- - sqlite=3.33.0=h62c20be_0
25
- - tk=8.6.12=h1ccaba5_0
26
- - wheel=0.37.1=pyhd3eb1b0_0
27
- - xz=5.2.6=h5eee18b_0
28
- - zlib=1.2.12=h5eee18b_3
29
- - pip:
30
- - absl-py==0.15.0
31
- - aiohttp==3.8.3
32
- - aiosignal==1.2.0
33
- - analytics-python==1.4.0
34
- - anyio==3.6.1
35
- - astunparse==1.6.3
36
- - async-timeout==4.0.2
37
- - attrs==22.1.0
38
- - backoff==1.10.0
39
- - bcrypt==4.0.1
40
- - bleach==5.0.1
41
- - cachetools==5.2.0
42
- - cffi==1.15.1
43
- - charset-normalizer==2.1.1
44
- - click==8.1.3
45
- - contourpy==1.0.5
46
- - cryptography==38.0.1
47
- - cycler==0.11.0
48
- - fastapi==0.76.0
49
- - fawkes==1.0.4
50
- - ffmpy==0.3.0
51
- - flatbuffers==1.12
52
- - fonttools==4.37.4
53
- - frozenlist==1.3.1
54
- - fsspec==2022.8.2
55
- - gast==0.3.3
56
- - google-auth==2.12.0
57
- - google-auth-oauthlib==0.4.6
58
- - google-pasta==0.2.0
59
- - gradio==3.0.20
60
- - grpcio==1.32.0
61
- - h11==0.14.0
62
- - h5py==2.10.0
63
- - idna==3.4
64
- - importlib-metadata==5.0.0
65
- - jinja2==3.1.2
66
- - keras==2.4.3
67
- - keras-preprocessing==1.1.2
68
- - kiwisolver==1.4.4
69
- - linkify-it-py==1.0.3
70
- - markdown==3.4.1
71
- - markdown-it-py==2.1.0
72
- - markupsafe==2.1.1
73
- - matplotlib==3.6.1
74
- - mdit-py-plugins==0.3.1
75
- - mdurl==0.1.2
76
- - monotonic==1.6
77
- - mtcnn==0.1.1
78
- - multidict==6.0.2
79
- - numpy==1.19.5
80
- - oauthlib==3.2.1
81
- - opencv-python==4.6.0.66
82
- - opt-einsum==3.3.0
83
- - orjson==3.8.0
84
- - packaging==21.3
85
- - pandas==1.4.4
86
- - paramiko==2.11.0
87
- - pillow==9.2.0
88
- - protobuf==3.19.6
89
- - pyasn1==0.4.8
90
- - pyasn1-modules==0.2.8
91
- - pycparser==2.21
92
- - pycryptodome==3.15.0
93
- - pydantic==1.9.2
94
- - pydub==0.25.1
95
- - pynacl==1.5.0
96
- - pyparsing==3.0.9
97
- - python-dateutil==2.8.2
98
- - python-multipart==0.0.5
99
- - pytz==2022.4
100
- - pyyaml==6.0
101
- - requests==2.28.1
102
- - requests-oauthlib==1.3.1
103
- - rsa==4.9
104
- - scipy==1.9.2
105
- - six==1.15.0
106
- - sniffio==1.3.0
107
- - starlette==0.18.0
108
- - tensorboard==2.10.1
109
- - tensorboard-data-server==0.6.1
110
- - tensorboard-plugin-wit==1.8.1
111
- - tensorflow==2.4.1
112
- - tensorflow-estimator==2.4.0
113
- - termcolor==1.1.0
114
- - typing-extensions
115
- - uc-micro-py==1.0.1
116
- - urllib3==1.26.12
117
- - uvicorn==0.18.3
118
- - webencodings==0.5.1
119
- - werkzeug==2.2.2
120
- - wrapt==1.12.1
121
- - yarl==1.8.1
122
- - zipp==3.9.0
123
- prefix: /opt/conda/envs/gradio
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1,95 +1,2 @@
1
- absl-py==0.15.0
2
- aiohttp==3.8.3
3
- aiosignal==1.3.1
4
- analytics-python==1.4.0
5
- anyio==3.6.2
6
- astunparse==1.6.3
7
- async-timeout==4.0.2
8
- asynctest==0.13.0
9
- attrs==22.1.0
10
- backoff==1.10.0
11
- bcrypt==4.0.1
12
- bleach==5.0.1
13
- cachetools==5.2.0
14
- certifi==2022.9.24
15
- cffi==1.15.1
16
- charset-normalizer==2.1.1
17
- click==8.1.3
18
- cryptography==38.0.3
19
- cycler==0.11.0
20
- fastapi==0.76.0
21
- fawkes==1.0.4
22
- ffmpy==0.3.0
23
- flatbuffers==1.12
24
- fonttools==4.38.0
25
- frozenlist==1.3.3
26
- fsspec==2022.10.0
27
- gast==0.3.3
28
- google-auth==2.14.1
29
- google-auth-oauthlib==0.4.6
30
- google-pasta==0.2.0
31
- gradio==3.0.20
32
- grpcio==1.32.0
33
- h11==0.14.0
34
- h5py==2.10.0
35
- idna==3.4
36
- importlib-metadata==5.0.0
37
- Jinja2==3.1.2
38
- Keras==2.4.3
39
- Keras-Preprocessing==1.1.2
40
- kiwisolver==1.4.4
41
- linkify-it-py==1.0.3
42
- Markdown==3.4.1
43
- markdown-it-py==2.1.0
44
- MarkupSafe==2.1.1
45
- matplotlib==3.5.3
46
- mdit-py-plugins==0.3.1
47
- mdurl==0.1.2
48
- monotonic==1.6
49
- mtcnn==0.1.1
50
- multidict==6.0.2
51
- numpy==1.19.5
52
- oauthlib==3.2.2
53
- opencv-python==4.6.0.66
54
- opt-einsum==3.3.0
55
- orjson==3.8.1
56
- packaging==21.3
57
- pandas==1.3.5
58
- paramiko==2.12.0
59
- Pillow==9.3.0
60
- pkg_resources==0.0.0
61
- protobuf==3.20.3
62
- pyasn1==0.4.8
63
- pyasn1-modules==0.2.8
64
- pycparser==2.21
65
- pycryptodome==3.15.0
66
- pydantic==1.9.2
67
- pydub==0.25.1
68
- PyNaCl==1.5.0
69
- pyparsing==3.0.9
70
- python-dateutil==2.8.2
71
- python-multipart==0.0.5
72
- pytz==2022.6
73
- PyYAML==6.0
74
- requests==2.28.1
75
- requests-oauthlib==1.3.1
76
- rsa==4.9
77
- scipy==1.7.3
78
- six==1.15.0
79
- sniffio==1.3.0
80
- starlette==0.18.0
81
- tensorboard==2.11.0
82
- tensorboard-data-server==0.6.1
83
- tensorboard-plugin-wit==1.8.1
84
- tensorflow==2.4.1
85
- tensorflow-estimator==2.4.0
86
- termcolor==1.1.0
87
- typing_extensions==4.4.0
88
- uc-micro-py==1.0.1
89
- urllib3==1.26.12
90
- uvicorn==0.19.0
91
- webencodings==0.5.1
92
- Werkzeug==2.2.2
93
- wrapt==1.12.1
94
- yarl==1.8.1
95
- zipp==3.10.0
 
1
+ gradio==3.21.0
2
+ fawkes==1.0.4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements_personal.txt DELETED
@@ -1,2 +0,0 @@
1
- gradio==3.14.0
2
- fawkes==1.0.4