Skip to content

Commit 0a10e3d

Browse files
committed
Initial commit
0 parents  commit 0a10e3d

30 files changed

+3899
-0
lines changed

.gitignore

+117
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
3+
.idea
4+
5+
/meta-optimizers/spearmint/db/
6+
/meta-optimizers/spearmint/trained_models/
7+
/meta-optimizers/spearmint/output/
8+
9+
### Python template
10+
# Byte-compiled / optimized / DLL files
11+
__pycache__/
12+
*.py[cod]
13+
*$py.class
14+
15+
# C extensions
16+
*.so
17+
18+
# Distribution / packaging
19+
.Python
20+
env/
21+
build/
22+
develop-eggs/
23+
dist/
24+
downloads/
25+
eggs/
26+
.eggs/
27+
lib/
28+
lib64/
29+
parts/
30+
sdist/
31+
var/
32+
*.egg-info/
33+
.installed.cfg
34+
*.egg
35+
36+
# PyInstaller
37+
# Usually these files are written by a python script from a template
38+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
39+
*.manifest
40+
*.spec
41+
42+
# Installer logs
43+
pip-log.txt
44+
pip-delete-this-directory.txt
45+
46+
# Unit test / coverage reports
47+
htmlcov/
48+
.tox/
49+
.coverage
50+
.coverage.*
51+
.cache
52+
nosetests.xml
53+
coverage.xml
54+
*,cover
55+
56+
# Translations
57+
*.mo
58+
*.pot
59+
60+
# Django stuff:
61+
*.log
62+
63+
# Sphinx documentation
64+
docs/_build/
65+
66+
# PyBuilder
67+
target/
68+
### Emacs template
69+
# -*- mode: gitignore; -*-
70+
*~
71+
\#*\#
72+
/.emacs.desktop
73+
/.emacs.desktop.lock
74+
*.elc
75+
auto-save-list
76+
tramp
77+
.\#*
78+
79+
# Org-mode
80+
.org-id-locations
81+
*_archive
82+
83+
# flymake-mode
84+
*_flymake.*
85+
86+
# eshell files
87+
/eshell/history
88+
/eshell/lastdir
89+
90+
# elpa packages
91+
/elpa/
92+
93+
# reftex files
94+
*.rel
95+
96+
# AUCTeX auto folder
97+
/auto/
98+
99+
# cask packages
100+
.cask/
101+
102+
# Models
103+
*.pkl
104+
*.json
105+
*.h5
106+
*.npy
107+
*.zip
108+
109+
# Training results
110+
*.vqa
111+
*.coco
112+
*.multiclass
113+
*.pred
114+
*.txt
115+
116+
# Visualization files
117+
.ipynb_checkpoints

0 commit comments

Comments
 (0)