Skip to content

Commit ca50edb

Browse files
committed
Natural Language Processing for the next decade
1 parent aaa4ea0 commit ca50edb

File tree

168 files changed

+184754
-0
lines changed

Some content is hidden

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

168 files changed

+184754
-0
lines changed

.gitignore

Lines changed: 287 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,287 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
pip-wheel-metadata/
26+
share/python-wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.nox/
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+
db.sqlite3-journal
64+
65+
# Flask stuff:
66+
instance/
67+
.webassets-cache
68+
69+
# Scrapy stuff:
70+
.scrapy
71+
72+
# Sphinx documentation
73+
docs/_build/
74+
75+
# PyBuilder
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
.python-version
87+
88+
# pipenv
89+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
90+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
91+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
92+
# install all needed dependencies.
93+
#Pipfile.lock
94+
95+
# celery beat schedule file
96+
celerybeat-schedule
97+
98+
# SageMath parsed files
99+
*.sage.py
100+
101+
# Environments
102+
.env
103+
.venv
104+
env/
105+
venv/
106+
ENV/
107+
env.bak/
108+
venv.bak/
109+
110+
# Spyder project settings
111+
.spyderproject
112+
.spyproject
113+
114+
# Rope project settings
115+
.ropeproject
116+
117+
# mkdocs documentation
118+
/site
119+
120+
# mypy
121+
.mypy_cache/
122+
.dmypy.json
123+
dmypy.json
124+
125+
# Pyre type checker
126+
.pyre/
127+
128+
### Java template
129+
# Compiled class file
130+
*.class
131+
132+
# Log file
133+
134+
# BlueJ files
135+
*.ctxt
136+
137+
# Mobile Tools for Java (J2ME)
138+
.mtj.tmp/
139+
140+
# Package Files #
141+
*.jar
142+
*.war
143+
*.nar
144+
*.ear
145+
*.zip
146+
*.tar.gz
147+
*.rar
148+
149+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
150+
hs_err_pid*
151+
152+
### Eclipse template
153+
.metadata
154+
bin/
155+
tmp/
156+
*.tmp
157+
*.bak
158+
*.swp
159+
*~.nib
160+
local.properties
161+
.settings/
162+
.loadpath
163+
.recommenders
164+
165+
# External tool builders
166+
.externalToolBuilders/
167+
168+
# Locally stored "Eclipse launch configurations"
169+
*.launch
170+
171+
# PyDev specific (Python IDE for Eclipse)
172+
*.pydevproject
173+
174+
# CDT-specific (C/C++ Development Tooling)
175+
.cproject
176+
177+
# CDT- autotools
178+
.autotools
179+
180+
# Java annotation processor (APT)
181+
.factorypath
182+
183+
# PDT-specific (PHP Development Tools)
184+
.buildpath
185+
186+
# sbteclipse plugin
187+
.target
188+
189+
# Tern plugin
190+
.tern-project
191+
192+
# TeXlipse plugin
193+
.texlipse
194+
195+
# STS (Spring Tool Suite)
196+
.springBeans
197+
198+
# Code Recommenders
199+
.recommenders/
200+
201+
# Annotation Processing
202+
.apt_generated/
203+
204+
# Scala IDE specific (Scala & Java development for Eclipse)
205+
.cache-main
206+
.scala_dependencies
207+
.worksheet
208+
209+
### VisualStudioCode template
210+
.vscode/*
211+
!.vscode/settings.json
212+
!.vscode/tasks.json
213+
!.vscode/launch.json
214+
!.vscode/extensions.json
215+
216+
### JetBrains template
217+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
218+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
219+
220+
# User-specific stuff
221+
.idea/**/workspace.xml
222+
.idea/**/tasks.xml
223+
.idea/**/usage.statistics.xml
224+
.idea/**/dictionaries
225+
.idea/**/shelf
226+
227+
# Generated files
228+
.idea/**/contentModel.xml
229+
230+
# Sensitive or high-churn files
231+
.idea/**/dataSources/
232+
.idea/**/dataSources.ids
233+
.idea/**/dataSources.local.xml
234+
.idea/**/sqlDataSources.xml
235+
.idea/**/dynamic.xml
236+
.idea/**/uiDesigner.xml
237+
.idea/**/dbnavigator.xml
238+
239+
# Gradle
240+
.idea/**/gradle.xml
241+
.idea/**/libraries
242+
243+
# Gradle and Maven with auto-import
244+
# When using Gradle or Maven with auto-import, you should exclude module files,
245+
# since they will be recreated, and may cause churn. Uncomment if using
246+
# auto-import.
247+
# .idea/modules.xml
248+
# .idea/*.iml
249+
# .idea/modules
250+
# *.iml
251+
# *.ipr
252+
253+
# CMake
254+
cmake-build-*/
255+
256+
# Mongo Explorer plugin
257+
.idea/**/mongoSettings.xml
258+
259+
# File-based project format
260+
*.iws
261+
262+
# IntelliJ
263+
out/
264+
265+
# mpeltonen/sbt-idea plugin
266+
.idea_modules/
267+
268+
# JIRA plugin
269+
atlassian-ide-plugin.xml
270+
271+
# Cursive Clojure plugin
272+
.idea/replstate.xml
273+
274+
# Crashlytics plugin (for Android Studio and IntelliJ)
275+
com_crashlytics_export_strings.xml
276+
crashlytics.properties
277+
crashlytics-build.properties
278+
fabric.properties
279+
280+
# Editor-based Rest Client
281+
.idea/httpRequests
282+
283+
# Android studio 3.1+ serialized cache file
284+
.idea/caches/build_file_checksums.ser
285+
.idea
286+
*.iml
287+
data

0 commit comments

Comments
 (0)