Diff of /.gitignore [000000] .. [9cc651]

Switch to unified view

a b/.gitignore
1
kaggle_3m
2
logs
3
predictions
4
5
# Created by https://www.gitignore.io/api/osx,linux,matlab,python,pycharm+all,intellij+all,jupyternotebook
6
7
### Intellij+all ###
8
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
9
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
10
11
# User-specific stuff:
12
.idea/**/workspace.xml
13
.idea/**/tasks.xml
14
.idea/dictionaries
15
16
# Sensitive or high-churn files:
17
.idea/**/dataSources/
18
.idea/**/dataSources.ids
19
.idea/**/dataSources.xml
20
.idea/**/dataSources.local.xml
21
.idea/**/sqlDataSources.xml
22
.idea/**/dynamic.xml
23
.idea/**/uiDesigner.xml
24
25
# Gradle:
26
.idea/**/gradle.xml
27
.idea/**/libraries
28
29
# CMake
30
cmake-build-debug/
31
32
# Mongo Explorer plugin:
33
.idea/**/mongoSettings.xml
34
35
## File-based project format:
36
*.iws
37
38
## Plugin-specific files:
39
40
# IntelliJ
41
/out/
42
43
# mpeltonen/sbt-idea plugin
44
.idea_modules/
45
46
# JIRA plugin
47
atlassian-ide-plugin.xml
48
49
# Cursive Clojure plugin
50
.idea/replstate.xml
51
52
# Ruby plugin and RubyMine
53
/.rakeTasks
54
55
# Crashlytics plugin (for Android Studio and IntelliJ)
56
com_crashlytics_export_strings.xml
57
crashlytics.properties
58
crashlytics-build.properties
59
fabric.properties
60
61
### Intellij+all Patch ###
62
# Ignores the whole idea folder
63
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
64
65
.idea/
66
67
### JupyterNotebook ###
68
.ipynb_checkpoints
69
*/.ipynb_checkpoints/*
70
71
# Remove previous ipynb_checkpoints
72
#   git rm -r .ipynb_checkpoints/
73
#
74
### Linux ###
75
*~
76
77
# temporary files which can be created if a process still has a handle open of a deleted file
78
.fuse_hidden*
79
80
# KDE directory preferences
81
.directory
82
83
# Linux trash folder which might appear on any partition or disk
84
.Trash-*
85
86
# .nfs files are created when an open file is removed but is still being accessed
87
.nfs*
88
89
### Matlab ###
90
##---------------------------------------------------
91
## Remove autosaves generated by the Matlab editor
92
## We have git for backups!
93
##---------------------------------------------------
94
95
# Windows default autosave extension
96
*.asv
97
98
# OSX / *nix default autosave extension
99
*.m~
100
101
# Compiled MEX binaries (all platforms)
102
*.mex*
103
104
# Simulink Code Generation
105
slprj/
106
107
# Session info
108
octave-workspace
109
110
# Simulink autosave extension
111
*.autosave
112
113
### OSX ###
114
*.DS_Store
115
.AppleDouble
116
.LSOverride
117
118
# Icon must end with two \r
119
Icon
120
121
# Thumbnails
122
._*
123
124
# Files that might appear in the root of a volume
125
.DocumentRevisions-V100
126
.fseventsd
127
.Spotlight-V100
128
.TemporaryItems
129
.Trashes
130
.VolumeIcon.icns
131
.com.apple.timemachine.donotpresent
132
133
# Directories potentially created on remote AFP share
134
.AppleDB
135
.AppleDesktop
136
Network Trash Folder
137
Temporary Items
138
.apdisk
139
140
### PyCharm+all ###
141
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
142
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
143
144
# User-specific stuff:
145
146
# Sensitive or high-churn files:
147
148
# Gradle:
149
150
# CMake
151
152
# Mongo Explorer plugin:
153
154
## File-based project format:
155
156
## Plugin-specific files:
157
158
# IntelliJ
159
160
# mpeltonen/sbt-idea plugin
161
162
# JIRA plugin
163
164
# Cursive Clojure plugin
165
166
# Ruby plugin and RubyMine
167
168
# Crashlytics plugin (for Android Studio and IntelliJ)
169
170
### PyCharm+all Patch ###
171
# Ignores the whole idea folder
172
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
173
174
175
### Python ###
176
# Byte-compiled / optimized / DLL files
177
__pycache__/
178
*.py[cod]
179
*$py.class
180
181
# C extensions
182
*.so
183
184
# Distribution / packaging
185
.Python
186
build/
187
develop-eggs/
188
dist/
189
downloads/
190
eggs/
191
.eggs/
192
lib/
193
lib64/
194
parts/
195
sdist/
196
var/
197
wheels/
198
*.egg-info/
199
.installed.cfg
200
*.egg
201
202
# PyInstaller
203
#  Usually these files are written by a python script from a template
204
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
205
*.manifest
206
*.spec
207
208
# Installer logs
209
pip-log.txt
210
pip-delete-this-directory.txt
211
212
# Unit test / coverage reports
213
htmlcov/
214
.tox/
215
.coverage
216
.coverage.*
217
.cache
218
.pytest_cache/
219
nosetests.xml
220
coverage.xml
221
*.cover
222
.hypothesis/
223
224
# Translations
225
*.mo
226
*.pot
227
228
# Flask stuff:
229
instance/
230
.webassets-cache
231
232
# Scrapy stuff:
233
.scrapy
234
235
# Sphinx documentation
236
docs/_build/
237
238
# PyBuilder
239
target/
240
241
# Jupyter Notebook
242
243
# pyenv
244
.python-version
245
246
# celery beat schedule file
247
celerybeat-schedule.*
248
249
# SageMath parsed files
250
*.sage.py
251
252
# Environments
253
.env
254
.venv
255
env/
256
venv/
257
ENV/
258
env.bak/
259
venv.bak/
260
261
# Spyder project settings
262
.spyderproject
263
.spyproject
264
265
# Rope project settings
266
.ropeproject
267
268
# mkdocs documentation
269
/site
270
271
# mypy
272
.mypy_cache/
273
274
275
# End of https://www.gitignore.io/api/osx,linux,matlab,python,pycharm+all,intellij+all,jupyternotebook
276