|
a |
|
b/.gitignore |
|
|
1 |
# bionemo |
|
|
2 |
docs/site/ |
|
|
3 |
*.nemo |
|
|
4 |
protein/ |
|
|
5 |
results/ |
|
|
6 |
|
|
|
7 |
# Local configs |
|
|
8 |
.gitconfig |
|
|
9 |
.bash_history |
|
|
10 |
.vscode-server |
|
|
11 |
.gnupg |
|
|
12 |
|
|
|
13 |
# Lightning and project output files |
|
|
14 |
lightning_logs |
|
|
15 |
|
|
|
16 |
# Byte-compiled / optimized / DLL files |
|
|
17 |
__pycache__/ |
|
|
18 |
*.py[cod] |
|
|
19 |
*$py.class |
|
|
20 |
|
|
|
21 |
# C extensions |
|
|
22 |
*.so |
|
|
23 |
|
|
|
24 |
# Distribution / packaging |
|
|
25 |
.Python |
|
|
26 |
build/ |
|
|
27 |
develop-eggs/ |
|
|
28 |
dist/ |
|
|
29 |
downloads/ |
|
|
30 |
eggs/ |
|
|
31 |
.eggs/ |
|
|
32 |
lib/ |
|
|
33 |
lib64/ |
|
|
34 |
parts/ |
|
|
35 |
sdist/ |
|
|
36 |
var/ |
|
|
37 |
*.egg-info/ |
|
|
38 |
.installed.cfg |
|
|
39 |
*.egg |
|
|
40 |
|
|
|
41 |
# PyInstaller |
|
|
42 |
# Usually these files are written by a python script from a template |
|
|
43 |
# before PyInstaller builds the exe, so as to inject date/other infos into it. |
|
|
44 |
*.manifest |
|
|
45 |
*.spec |
|
|
46 |
|
|
|
47 |
# Installer logs |
|
|
48 |
pip-log.txt |
|
|
49 |
pip-delete-this-directory.txt |
|
|
50 |
|
|
|
51 |
# Unit test / coverage reports |
|
|
52 |
htmlcov/ |
|
|
53 |
.tox/ |
|
|
54 |
.nox/ |
|
|
55 |
.coverage |
|
|
56 |
.coverage.* |
|
|
57 |
.cache |
|
|
58 |
.dotnet |
|
|
59 |
.local |
|
|
60 |
nosetests.xml |
|
|
61 |
coverage.xml |
|
|
62 |
*.cover |
|
|
63 |
*.py,cover |
|
|
64 |
.hypothesis/ |
|
|
65 |
.pytest_cache/ |
|
|
66 |
MNISTCustom/ |
|
|
67 |
|
|
|
68 |
# Python debugging |
|
|
69 |
.pdbhistory |
|
|
70 |
.python_history |
|
|
71 |
|
|
|
72 |
# Translations |
|
|
73 |
*.mo |
|
|
74 |
*.pot |
|
|
75 |
|
|
|
76 |
# Django stuff: |
|
|
77 |
*.log |
|
|
78 |
local_settings.py |
|
|
79 |
db.sqlite3 |
|
|
80 |
|
|
|
81 |
# Flask stuff: |
|
|
82 |
instance/ |
|
|
83 |
.webassets-cache |
|
|
84 |
|
|
|
85 |
# Scrapy stuff: |
|
|
86 |
.scrapy |
|
|
87 |
|
|
|
88 |
# Sphinx documentation |
|
|
89 |
docs/_build/ |
|
|
90 |
docs/_static/ |
|
|
91 |
|
|
|
92 |
# PyBuilder |
|
|
93 |
target/ |
|
|
94 |
|
|
|
95 |
# Jupyter Notebook |
|
|
96 |
.ipynb_checkpoints |
|
|
97 |
|
|
|
98 |
# IPython |
|
|
99 |
profile_default/ |
|
|
100 |
ipython_config.py |
|
|
101 |
|
|
|
102 |
# pyenv |
|
|
103 |
.python-version |
|
|
104 |
|
|
|
105 |
# celery beat schedule file |
|
|
106 |
celerybeat-schedule |
|
|
107 |
|
|
|
108 |
# dotenv |
|
|
109 |
.env |
|
|
110 |
.env.* |
|
|
111 |
.ssh |
|
|
112 |
.ssh/* |
|
|
113 |
.triton |
|
|
114 |
.triton/* |
|
|
115 |
|
|
|
116 |
# virtualenv |
|
|
117 |
venv/ |
|
|
118 |
ENV/ |
|
|
119 |
env/ |
|
|
120 |
.env/ |
|
|
121 |
.venv/ |
|
|
122 |
.ENV/ |
|
|
123 |
.envrc |
|
|
124 |
python_env/ |
|
|
125 |
venv.bak/ |
|
|
126 |
venv.bak2/ |
|
|
127 |
|
|
|
128 |
# Spyder project settings |
|
|
129 |
.spyderproject |
|
|
130 |
.spyproject |
|
|
131 |
|
|
|
132 |
# Rope project settings |
|
|
133 |
.ropeproject |
|
|
134 |
|
|
|
135 |
# mkdocs documentation |
|
|
136 |
/site |
|
|
137 |
|
|
|
138 |
# mypy |
|
|
139 |
.mypy_cache/ |
|
|
140 |
.dmypy.json |
|
|
141 |
dmypy.json |
|
|
142 |
|
|
|
143 |
# Pyre type checker |
|
|
144 |
.pyre/ |
|
|
145 |
|
|
|
146 |
# PyCharm |
|
|
147 |
.idea/ |
|
|
148 |
*.iml |
|
|
149 |
*.ipr |
|
|
150 |
*.iws |
|
|
151 |
|
|
|
152 |
# Temporary files |
|
|
153 |
*.swp |
|
|
154 |
*.swo |
|
|
155 |
*~ |
|
|
156 |
*# |
|
|
157 |
.viminfo |
|
|
158 |
.lesshst |
|
|
159 |
|
|
|
160 |
# macOS |
|
|
161 |
.DS_Store |
|
|
162 |
|
|
|
163 |
# Build system |
|
|
164 |
.pytest_cache/ |
|
|
165 |
__pycache__/ |
|
|
166 |
*.pyc |
|
|
167 |
|
|
|
168 |
# Ignore local directories |
|
|
169 |
local/ |
|
|
170 |
|
|
|
171 |
# Logs |
|
|
172 |
*.log |
|
|
173 |
|
|
|
174 |
# Tests |
|
|
175 |
tests/__pycache__/ |
|
|
176 |
|
|
|
177 |
# Generated files |
|
|
178 |
*.egg-info/ |
|
|
179 |
.eggs/ |
|
|
180 |
|
|
|
181 |
# Build files |
|
|
182 |
build/ |
|
|
183 |
dist/ |
|
|
184 |
|
|
|
185 |
# Coverage reports |
|
|
186 |
.coverage |
|
|
187 |
coverage.xml |
|
|
188 |
|
|
|
189 |
# Jupyter Notebook |
|
|
190 |
.ipynb_checkpoints |
|
|
191 |
|
|
|
192 |
# System files |
|
|
193 |
.DS_Store |
|
|
194 |
Thumbs.db |
|
|
195 |
|
|
|
196 |
.python_history |