Skip to content

Commit 67d980c

Browse files
committed
# commit
1 parent e0671de commit 67d980c

File tree

4 files changed

+115
-0
lines changed

4 files changed

+115
-0
lines changed

.gitignore

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
.ipynb_checkpoints/*
2+
data/
3+
checkpoint/
4+
graphs/
5+
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
.vscode
111+
sh
112+
.DS_Store

2.NLP_PREP/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ venv.bak/
107107

108108
# mypy
109109
.mypy_cache/
110+
.DS_Store

3.NLP_INTRO/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ venv.bak/
107107

108108
# mypy
109109
.mypy_cache/
110+
.DS_Store

4.TEXT_CLASSIFICATION/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,4 @@ venv.bak/
107107

108108
# mypy
109109
.mypy_cache/
110+
.DS_Store

0 commit comments

Comments
 (0)