pkiage commited on
Commit
46c7f13
1 Parent(s): 37c732e

update gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +102 -2
.gitignore CHANGED
@@ -2,6 +2,106 @@
2
  *.pyc
3
  venv
4
  .envrc
 
 
5
  *.ipynb
6
- __pycache__
7
- .vs
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  *.pyc
3
  venv
4
  .envrc
5
+
6
+ # Work In Progress
7
  *.ipynb
8
+
9
+ # Virtual environment
10
+ venv
11
+
12
+ # Byte-compiled / optimized / DLL files
13
+ __pycache__/
14
+ *.py[cod]
15
+
16
+ # C extensions
17
+ *.so
18
+
19
+ # Cache and similar
20
+ catboost_info
21
+ learning_rate_0.05
22
+ learning_rate_0.5
23
+ default
24
+ catboost_model.bin
25
+
26
+ # Distribution / packaging
27
+ .Python
28
+ env/
29
+ build/
30
+ develop-eggs/
31
+ dist/
32
+ downloads/
33
+ eggs/
34
+ .eggs/
35
+ lib/
36
+ lib64/
37
+ parts/
38
+ sdist/
39
+ var/
40
+ *.egg-info/
41
+ .installed.cfg
42
+ *.egg
43
+
44
+ # PyInstaller
45
+ # Usually these files are written by a python script from a template
46
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
47
+ *.manifest
48
+ *.spec
49
+
50
+ # Installer logs
51
+ pip-log.txt
52
+ pip-delete-this-directory.txt
53
+
54
+ # Unit test / coverage reports
55
+ htmlcov/
56
+ .tox/
57
+ .coverage
58
+ .coverage.*
59
+ .cache
60
+ nosetests.xml
61
+ coverage.xml
62
+ *.cover
63
+
64
+ # Translations
65
+ *.mo
66
+ *.pot
67
+
68
+ # Django stuff:
69
+ *.log
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # DotEnv configuration
78
+ .env
79
+
80
+ # Database
81
+ *.db
82
+ *.rdb
83
+
84
+ # Pycharm
85
+ .idea
86
+
87
+ # VS Code
88
+ .vscode/
89
+
90
+ # Spyder
91
+ .spyproject/
92
+
93
+ # Jupyter NB Checkpoints
94
+ .ipynb_checkpoints/
95
+
96
+ # exclude data from source control by default
97
+ /data/
98
+
99
+ # Mac OS-specific storage files
100
+ .DS_Store
101
+
102
+ # vim
103
+ *.swp
104
+ *.swo
105
+
106
+ # Mypy cache
107
+ .mypy_cache/