Skip to content

Commit e5b897d

Browse files
Richard TranRichard Tran
Richard Tran
authored and
Richard Tran
committed
added gitignore
1 parent 163f853 commit e5b897d

File tree

1 file changed

+113
-0
lines changed

1 file changed

+113
-0
lines changed

.gitignore

+113
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
wandb
2+
data
3+
checkpoints
4+
results
5+
logs
6+
*.traj
7+
experimental
8+
9+
# Byte-compiled / optimized / DLL files
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
14+
# C extensions
15+
*.so
16+
17+
# Distribution / packaging
18+
.Python
19+
env/
20+
build/
21+
develop-eggs/
22+
dist/
23+
downloads/
24+
eggs/
25+
.eggs/
26+
lib/
27+
lib64/
28+
parts/
29+
sdist/
30+
var/
31+
*.egg-info/
32+
.installed.cfg
33+
*.egg
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+
56+
# Translations
57+
*.mo
58+
*.pot
59+
60+
# Django stuff:
61+
*.log
62+
local_settings.py
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
docs/source/_build/
74+
75+
# PyBuilder
76+
target/
77+
78+
# IPython Notebook
79+
.ipynb_checkpoints
80+
81+
# pyenv
82+
.python-version
83+
84+
# celery beat schedule file
85+
celerybeat-schedule
86+
87+
# dotenv
88+
.env
89+
90+
# virtualenv
91+
venv/
92+
ENV/
93+
94+
# Spyder project settings
95+
.spyderproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
100+
# User directories
101+
Local
102+
103+
# .DS_Store
104+
.DS_Store
105+
106+
# VIM swap files
107+
*.swp
108+
109+
# PyCharm
110+
.idea/
111+
112+
# VS Code
113+
.vscode/

0 commit comments

Comments
 (0)