Datasets:
add ignore
Browse files- .gitignore +52 -0
.gitignore
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python bytecode files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
|
5 |
+
# Virtual environment
|
6 |
+
venv/
|
7 |
+
ENV/
|
8 |
+
env/
|
9 |
+
.venv/
|
10 |
+
.ENV/
|
11 |
+
# Python IDEs
|
12 |
+
.idea/
|
13 |
+
.vscode/
|
14 |
+
*.sublime-project
|
15 |
+
*.sublime-workspace
|
16 |
+
|
17 |
+
# Jupyter Notebook checkpoints
|
18 |
+
.ipynb_checkpoints/
|
19 |
+
|
20 |
+
# Data files (data used for training or testing)
|
21 |
+
*.log
|
22 |
+
|
23 |
+
# TensorBoard logs
|
24 |
+
runs/
|
25 |
+
tensorboard_logs/
|
26 |
+
|
27 |
+
# Operating system files
|
28 |
+
.DS_Store
|
29 |
+
Thumbs.db
|
30 |
+
|
31 |
+
# PyCharm files
|
32 |
+
*.iml
|
33 |
+
.idea/
|
34 |
+
|
35 |
+
# Coverage and testing tools
|
36 |
+
.coverage
|
37 |
+
nosetests.xml
|
38 |
+
coverage.xml
|
39 |
+
*.cover
|
40 |
+
*.log
|
41 |
+
|
42 |
+
# Compiled extension modules
|
43 |
+
*.so
|
44 |
+
*.dylib
|
45 |
+
*.pyd
|
46 |
+
|
47 |
+
# Cython debug symbols
|
48 |
+
cython_debug/
|
49 |
+
|
50 |
+
# Other custom ignore rules
|
51 |
+
*.bak
|
52 |
+
*.swp
|