Skip to content

Commit 6eabaeb

Browse files
committed
Adding tfx
Signed-off-by: Felipe Borges <[email protected]>
1 parent 0d69f97 commit 6eabaeb

File tree

14 files changed

+2426
-0
lines changed

14 files changed

+2426
-0
lines changed

tfx/data/train.csv

Lines changed: 892 additions & 0 deletions
Large diffs are not rendered by default.

tfx/docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: "3"
2+
3+
services:
4+
tfx:
5+
build:
6+
dockerfile: docker/Dockerfile
7+
context: .
8+
volumes:
9+
- "./mnt/:/root"
10+
- ".:/home"

tfx/docker/Dockerfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
FROM python:3.7
2+
3+
WORKDIR /home
4+
5+
#RUN groupdadd -r tfx && useradd --no-log-init -r -g tfx tfx
6+
7+
RUN apt-get update && apt-get install -y \
8+
vim \
9+
tmux \
10+
&& rm -rf /var/lib/apt/lists/*
11+
12+
13+
ADD docker/requirements.txt requirements.txt
14+
15+
RUN pip3 install -r requirements.txt

tfx/docker/requirements.txt

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
absl-py==0.8.1
2+
alembic==1.4.0
3+
apache-airflow==1.10.9
4+
apache-beam==2.19.0
5+
apispec==1.3.3
6+
argcomplete==1.11.1
7+
astor==0.8.1
8+
attrs==19.3.0
9+
avro-python3==1.9.1
10+
Babel==2.8.0
11+
backcall==0.1.0
12+
bleach==3.1.0
13+
cached-property==1.5.1
14+
cachetools==3.1.1
15+
cattrs==0.9.0
16+
certifi==2019.11.28
17+
chardet==3.0.4
18+
Click==7.0
19+
colorama==0.4.3
20+
colorlog==4.0.2
21+
configparser==3.5.3
22+
crcmod==1.7
23+
croniter==0.3.31
24+
decorator==4.4.1
25+
defusedxml==0.6.0
26+
dill==0.3.1.1
27+
docopt==0.6.2
28+
docutils==0.16
29+
entrypoints==0.3
30+
fastavro==0.21.24
31+
fasteners==0.15
32+
Flask==1.1.1
33+
Flask-Admin==1.5.4
34+
Flask-AppBuilder==2.2.2
35+
Flask-Babel==0.12.2
36+
Flask-Caching==1.3.3
37+
Flask-JWT-Extended==3.24.1
38+
Flask-Login==0.4.1
39+
Flask-OpenID==1.2.5
40+
Flask-SQLAlchemy==2.4.1
41+
flask-swagger==0.2.13
42+
Flask-WTF==0.14.3
43+
funcsigs==1.0.2
44+
future==0.16.0
45+
gast==0.2.2
46+
google-api-core==1.16.0
47+
google-api-python-client==1.7.11
48+
google-apitools==0.5.28
49+
google-auth==1.11.0
50+
google-auth-httplib2==0.0.3
51+
google-auth-oauthlib==0.4.1
52+
google-cloud-bigquery==1.17.1
53+
google-cloud-bigtable==1.0.0
54+
google-cloud-core==1.3.0
55+
google-cloud-datastore==1.7.4
56+
google-cloud-pubsub==1.0.2
57+
google-pasta==0.1.8
58+
google-resumable-media==0.4.1
59+
googleapis-common-protos==1.51.0
60+
graphviz==0.13.2
61+
grpc-google-iam-v1==0.12.3
62+
grpcio==1.27.1
63+
gunicorn==19.10.0
64+
h5py==2.10.0
65+
hdfs==2.5.8
66+
httplib2==0.12.0
67+
idna==2.8
68+
importlib-metadata==1.5.0
69+
ipykernel==5.1.4
70+
ipython==7.12.0
71+
ipython-genutils==0.2.0
72+
ipywidgets==7.5.1
73+
iso8601==0.1.12
74+
itsdangerous==1.1.0
75+
jedi==0.16.0
76+
Jinja2==2.10.3
77+
joblib==0.14.1
78+
json-merge-patch==0.2
79+
jsonschema==3.2.0
80+
jupyter==1.0.0
81+
jupyter-client==5.3.4
82+
jupyter-console==6.1.0
83+
jupyter-core==4.6.1
84+
Keras-Applications==1.0.8
85+
Keras-Preprocessing==1.1.0
86+
lazy-object-proxy==1.4.3
87+
lockfile==0.12.2
88+
Mako==1.1.1
89+
Markdown==2.6.11
90+
MarkupSafe==1.1.1
91+
marshmallow==2.19.5
92+
marshmallow-enum==1.5.1
93+
marshmallow-sqlalchemy==0.21.0
94+
mistune==0.8.4
95+
ml-metadata==0.15.2
96+
mock==2.0.0
97+
monotonic==1.5
98+
nbconvert==5.6.1
99+
nbformat==5.0.4
100+
notebook==6.0.3
101+
numpy==1.18.1
102+
oauth2client==3.0.0
103+
oauthlib==3.1.0
104+
opt-einsum==3.1.0
105+
pandas==0.25.3
106+
pandocfilters==1.4.2
107+
parso==0.6.1
108+
pbr==5.4.4
109+
pendulum==1.4.4
110+
pexpect==4.8.0
111+
pickleshare==0.7.5
112+
prison==0.1.2
113+
prometheus-client==0.7.1
114+
prompt-toolkit==3.0.3
115+
protobuf==3.11.3
116+
psutil==5.6.7
117+
ptyprocess==0.6.0
118+
pyarrow==0.14.1
119+
pyasn1==0.4.8
120+
pyasn1-modules==0.2.8
121+
pydot==1.4.1
122+
Pygments==2.5.2
123+
PyJWT==1.7.1
124+
pymongo==3.10.1
125+
pyparsing==2.4.6
126+
pyrsistent==0.15.7
127+
python-daemon==2.1.2
128+
python-dateutil==2.8.1
129+
python-editor==1.0.4
130+
python3-openid==3.1.0
131+
pytz==2019.3
132+
pytzdata==2019.3
133+
PyYAML==3.13
134+
pyzmq==18.1.1
135+
qtconsole==4.6.0
136+
requests==2.22.0
137+
requests-oauthlib==1.3.0
138+
rsa==4.0
139+
scikit-learn==0.21.3
140+
scipy==1.1.0
141+
Send2Trash==1.5.0
142+
setproctitle==1.1.10
143+
six==1.14.0
144+
SQLAlchemy==1.3.13
145+
SQLAlchemy-JSONField==0.9.0
146+
SQLAlchemy-Utils==0.36.1
147+
tabulate==0.8.6
148+
tenacity==4.12.0
149+
tensorboard==2.1.0
150+
tensorflow==2.1.0
151+
tensorflow-data-validation==0.15.0
152+
tensorflow-estimator==2.1.0
153+
tensorflow-metadata==0.15.2
154+
tensorflow-model-analysis==0.15.4
155+
tensorflow-serving-api==2.1.0
156+
tensorflow-transform==0.15.0
157+
termcolor==1.1.0
158+
terminado==0.8.3
159+
testpath==0.4.4
160+
text-unidecode==1.2
161+
tfx==0.15.0
162+
tfx-bsl==0.15.3
163+
thrift==0.13.0
164+
tornado==6.0.3
165+
traitlets==4.3.3
166+
typing==3.7.4.1
167+
typing-extensions==3.7.4.1
168+
tzlocal==1.5.1
169+
unicodecsv==0.14.1
170+
uritemplate==3.0.1
171+
urllib3==1.25.8
172+
wcwidth==0.1.8
173+
webencodings==0.5.1
174+
Werkzeug==0.16.1
175+
widgetsnbextension==3.5.1
176+
wrapt==1.11.2
177+
WTForms==2.2.1
178+
zipp==2.2.0
179+
zope.deprecation==4.4.0

tfx/docker/requirements_backup.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
apache-airflow
2+
tfx

tfx/mnt/.keras/keras.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"floatx": "float32",
3+
"epsilon": 1e-07,
4+
"backend": "tensorflow",
5+
"image_data_format": "channels_last"
6+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
58

0 commit comments

Comments
 (0)