|
a |
|
b/.gitignore |
|
|
1 |
# medaCy |
|
|
2 |
!test_word_embeddings.txt |
|
|
3 |
debug/ |
|
|
4 |
|
|
|
5 |
# macOS |
|
|
6 |
.DS_Store |
|
|
7 |
|
|
|
8 |
# Byte-compiled / optimized / DLL files |
|
|
9 |
__pycache__/ |
|
|
10 |
*.py[cod] |
|
|
11 |
*$py.class |
|
|
12 |
|
|
|
13 |
# C extensions |
|
|
14 |
*.so |
|
|
15 |
|
|
|
16 |
# Distribution / packaging |
|
|
17 |
.Python |
|
|
18 |
build/ |
|
|
19 |
develop-eggs/ |
|
|
20 |
dist/ |
|
|
21 |
downloads/ |
|
|
22 |
eggs/ |
|
|
23 |
.eggs/ |
|
|
24 |
lib/ |
|
|
25 |
lib64/ |
|
|
26 |
parts/ |
|
|
27 |
sdist/ |
|
|
28 |
var/ |
|
|
29 |
wheels/ |
|
|
30 |
*.egg-info/ |
|
|
31 |
.installed.cfg |
|
|
32 |
*.egg |
|
|
33 |
MANIFEST |
|
|
34 |
|
|
|
35 |
# PyInstaller |
|
|
36 |
# Usually these files are written by a python script from a template |
|
|
37 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
|
38 |
*.manifest |
|
|
39 |
*.spec |
|
|
40 |
|
|
|
41 |
# Installer logs |
|
|
42 |
pip-log.txt |
|
|
43 |
pip-delete-this-directory.txt |
|
|
44 |
|
|
|
45 |
# Unit test / coverage reports |
|
|
46 |
htmlcov/ |
|
|
47 |
.tox/ |
|
|
48 |
.coverage |
|
|
49 |
.coverage.* |
|
|
50 |
.cache |
|
|
51 |
nosetests.xml |
|
|
52 |
coverage.xml |
|
|
53 |
*.cover |
|
|
54 |
.hypothesis/ |
|
|
55 |
.pytest_cache/ |
|
|
56 |
|
|
|
57 |
# Translations |
|
|
58 |
*.mo |
|
|
59 |
*.pot |
|
|
60 |
|
|
|
61 |
# Django stuff: |
|
|
62 |
*.log |
|
|
63 |
local_settings.py |
|
|
64 |
db.sqlite3 |
|
|
65 |
|
|
|
66 |
# Flask stuff: |
|
|
67 |
instance/ |
|
|
68 |
.webassets-cache |
|
|
69 |
|
|
|
70 |
# Scrapy stuff: |
|
|
71 |
.scrapy |
|
|
72 |
|
|
|
73 |
# Sphinx documentation |
|
|
74 |
docs/build/ |
|
|
75 |
|
|
|
76 |
# PyBuilder |
|
|
77 |
target/ |
|
|
78 |
|
|
|
79 |
# Jupyter Notebook |
|
|
80 |
.ipynb_checkpoints |
|
|
81 |
|
|
|
82 |
# pyenv |
|
|
83 |
.python-version |
|
|
84 |
|
|
|
85 |
# celery beat schedule file |
|
|
86 |
celerybeat-schedule |
|
|
87 |
|
|
|
88 |
# SageMath parsed files |
|
|
89 |
*.sage.py |
|
|
90 |
|
|
|
91 |
# Environments |
|
|
92 |
.env |
|
|
93 |
.venv |
|
|
94 |
env/ |
|
|
95 |
venv/ |
|
|
96 |
ENV/ |
|
|
97 |
env.bak/ |
|
|
98 |
venv.bak/ |
|
|
99 |
|
|
|
100 |
# Spyder project settings |
|
|
101 |
.spyderproject |
|
|
102 |
.spyproject |
|
|
103 |
|
|
|
104 |
# Rope project settings |
|
|
105 |
.ropeproject |
|
|
106 |
|
|
|
107 |
# mkdocs documentation |
|
|
108 |
/site |
|
|
109 |
|
|
|
110 |
# mypy |
|
|
111 |
.mypy_cache/ |
|
|
112 |
|
|
|
113 |
|
|
|
114 |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
|
|
115 |
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
|
|
116 |
|
|
|
117 |
# User-specific stuff |
|
|
118 |
.idea |
|
|
119 |
.idea/**/workspace.xml |
|
|
120 |
.idea/**/tasks.xml |
|
|
121 |
.idea/**/usage.statistics.xml |
|
|
122 |
.idea/**/dictionaries |
|
|
123 |
.idea/**/shelf |
|
|
124 |
|
|
|
125 |
# Generated files |
|
|
126 |
.idea/**/contentModel.xml |
|
|
127 |
|
|
|
128 |
# Sensitive or high-churn files |
|
|
129 |
.idea/**/dataSources/ |
|
|
130 |
.idea/**/dataSources.ids |
|
|
131 |
.idea/**/dataSources.local.xml |
|
|
132 |
.idea/**/sqlDataSources.xml |
|
|
133 |
.idea/**/dynamic.xml |
|
|
134 |
.idea/**/uiDesigner.xml |
|
|
135 |
.idea/**/dbnavigator.xml |
|
|
136 |
|
|
|
137 |
# Gradle and Maven with auto-import |
|
|
138 |
# When using Gradle or Maven with auto-import, you should exclude module files, |
|
|
139 |
# since they will be recreated, and may cause churn. Uncomment if using |
|
|
140 |
# auto-import. |
|
|
141 |
# .idea/modules.xml |
|
|
142 |
# .idea/*.iml |
|
|
143 |
# .idea/modules |
|
|
144 |
|
|
|
145 |
# CMake |
|
|
146 |
cmake-build-*/ |
|
|
147 |
|
|
|
148 |
# Mongo Explorer plugin |
|
|
149 |
.idea/**/mongoSettings.xml |
|
|
150 |
|
|
|
151 |
# File-based project format |
|
|
152 |
*.iws |
|
|
153 |
|
|
|
154 |
# IntelliJ |
|
|
155 |
out/ |
|
|
156 |
|
|
|
157 |
# mpeltonen/sbt-idea plugin |
|
|
158 |
.idea_modules/ |
|
|
159 |
|
|
|
160 |
# JIRA plugin |
|
|
161 |
atlassian-ide-plugin.xml |
|
|
162 |
|
|
|
163 |
# Cursive Clojure plugin |
|
|
164 |
.idea/replstate.xml |
|
|
165 |
|
|
|
166 |
# Crashlytics plugin (for Android Studio and IntelliJ) |
|
|
167 |
com_crashlytics_export_strings.xml |
|
|
168 |
crashlytics.properties |
|
|
169 |
crashlytics-build.properties |
|
|
170 |
fabric.properties |
|
|
171 |
|
|
|
172 |
# Editor-based Rest Client |
|
|
173 |
.idea/httpRequests |
|
|
174 |
|
|
|
175 |
# VSCode Settings |
|
|
176 |
.vscode |
|
|
177 |
|
|
|
178 |
*.pyc |
|
|
179 |
*.egg-info |
|
|
180 |
*.eggs/ |
|
|
181 |
|
|
|
182 |
ubuntu-bionic-18.04-cloudimg-console.log |
|
|
183 |
.vagrant |