Skip to content

Commit 5e3514e

Browse files
committedAug 30, 2021
First Commit
1 parent cc752b1 commit 5e3514e

File tree

170 files changed

+28763
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+28763
-5
lines changed
 

‎.gitignore

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
### JupyterNotebooks ###
2+
.ipynb_checkpoints
3+
#*/.ipynb_checkpoints/*
4+
#**/.ipynb_checkpoints
5+
6+
# IPython
7+
profile_default/
8+
ipython_config.py
9+
10+
# Remove previous ipynb_checkpoints
11+
# git rm -r .ipynb_checkpoints/
12+
13+
### Python ###
14+
# Byte-compiled / optimized / DLL files
15+
__pycache__/
16+
**/__pycache__
17+
*.py[cod]
18+
*$py.class
19+
20+
# C extensions
21+
*.so
22+
23+
**/.idea
24+
25+
# Distribution / packaging
26+
.Python
27+
build/
28+
develop-eggs/
29+
dist/
30+
downloads/
31+
eggs/
32+
.eggs/
33+
parts/
34+
sdist/
35+
var/
36+
wheels/
37+
pip-wheel-metadata/
38+
share/python-wheels/
39+
*.egg-info/
40+
.installed.cfg
41+
*.egg
42+
MANIFEST
43+
44+
# Environments
45+
# .env
46+
.env/
47+
.venv/
48+
env/
49+
venv/
50+
ENV/
51+
env.bak/
52+
venv.bak/
53+
pythonenv*
54+
55+
# operating system-related files
56+
# file properties cache/storage on macOS
57+
*.DS_Store
58+
59+
# SageMaker
60+
*.flow
61+
churn.txt
62+
1-DataPrep/churn.ipynb
63+
1-DataPrep/test.csv
64+
1-DataPrep/train.csv
65+
1-DataPrep/validation.csv
66+
2-Modeling/xgboost_customer_churn.py
67+
3-Evaluation/evaluation.json
68+
3-Evaluation/model.tar.gz
69+
3-Evaluation/test.csv
70+
3-Evaluation/xgboost-model
71+
3-Evaluation/evaluate.py
72+
4-Deployment/RealTime/inference.py
73+
4-Deployment/Batch/test.csv
74+
4-Deployment/Batch/test_batch.csv
75+
4-Deployment/Batch/model.tar.gz
76+
4-Deployment/Batch/test_batch.csv.out
77+
4-Deployment/Batch/xgboost-model
78+
6-Pipelines/my_labs_solutions/*.py
79+
1-DataPrep/part-00000*

0 commit comments

Comments
 (0)