-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/refactor for reduced complexity #11
Changes from 242 commits
be9c2f6
fb62778
d42a48b
2fd84f8
d3bdb52
10a7d04
6991a5d
7a97030
7ad2ec5
5ef5c07
9845c3b
ab2f201
214aada
b6b0123
f8bd688
9ab8468
64db51e
53a84bc
7a657cd
b1937e0
9a5ddf9
80b2918
9bde66a
372da4a
a9c21a3
b4516cf
e14b5a7
62c0be2
9071e89
e568c04
02369c4
749a40a
a4dd93a
6c8161f
af0bd94
4b48579
cd2409a
51beedf
0fa8fb9
7f6c7f1
8aed160
3ccb45f
4eee5ed
abd362d
02b8c0a
1ddedb4
d016711
8991b9a
0af5dad
eee83d0
5c6a155
3ce0701
4bd72e6
3afffc0
38f3466
38811a1
028c445
8de0e18
c308ab4
86fafb4
f2fdef4
067b96c
cda0d42
d221be9
e597f27
c2886e4
0bfe348
9bebe24
b22b2e0
4229719
890d23b
1efa0fc
aa89747
acc6545
e10f7ae
91c48dd
d7c9f79
1c47b25
1a04562
41d8355
41b8e8f
6dbec32
26b38ac
c98d7ac
adb1451
fff5266
91ec582
02777dd
4642621
5d3f029
49e1f58
1882e42
d26c6b5
492d3a0
d4eba13
2d98276
a5348b2
719024e
acdd189
4325a54
43260e0
792ee73
bab06bd
596471a
4c7a7a1
f14c00b
6108953
9ee45a7
f67b0a2
8177014
46f0f3e
a3ae00e
7addb84
360aa53
d61380c
4cc0282
4528083
6735bd4
1bfea42
ae15dd5
2e0071c
3a79ed1
a17b17f
bee116c
842bb31
e3d420a
c0a4cf4
6027df9
d00a84e
b109558
ea896c3
2766ded
14e18af
e301dce
ec86223
beb6560
ed340ab
a00627b
c7c93bc
fdf333d
142fc47
ca842be
027b5e3
b73c30f
2310eaa
8479cf4
54690ae
52b187f
233fd2b
4b5bf62
cd3695a
a182781
3e2a607
4f2b56f
9bf23e7
7985b0f
6047d85
72b5532
cc7e67c
73417c0
3e9cdc1
cdc94b3
99e8f62
d2eb3d9
22cfd06
a9fb702
0edf98b
90bd8ba
4aaad7d
98d2324
15bc7c8
9ec481e
105af23
32b9827
6147dc4
badf5f9
83ee4e5
f0829af
671aaa7
40ce80a
6a02a2f
22d11ad
9aaac5d
178c8b4
52261a4
b29f35c
8f1aa29
19bd91c
6ea66e6
890d38e
03462f0
f95e8f4
64e9bb3
530811e
970a96b
132a460
c4c4f98
1ce2510
b1bdaf6
c7b7d6e
6894c46
66317cf
b45c470
288cffa
443d99a
a2c1a8b
8e94062
9388990
9973d94
478e036
a6d9270
66f1d88
c7812ee
711db03
697606e
fa1405a
692232e
1c0fad7
260e75e
f0ff59a
b939443
46edbaf
6e61919
1a29674
b746b9f
744082a
f6b1f1f
8ae1bc7
fa58b66
17b5ebe
d8d0dd7
9bdffce
6ff8116
71379e6
4c03a44
d8fd9e9
905a249
0799947
76697e3
33db5cd
68773bd
ed72ada
a51ff74
25d4c61
e2eae77
c296c8b
2b0cc96
3d18c4e
24e87f4
5cf5a91
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,134 @@ | ||
*.pyc | ||
__pycache__ | ||
|
||
#IRINA | ||
excursion/results/ | ||
examples/*.png | ||
examples/*.gif | ||
examples/.ipynb_checkpoints/ | ||
|
||
# Created by https://www.gitignore.io/api/python,jupyternotebooks | ||
# Edit at https://www.gitignore.io/?templates=python,jupyternotebooks | ||
|
||
### JupyterNotebooks ### | ||
# gitignore template for Jupyter Notebooks | ||
# website: http://jupyter.org/ | ||
|
||
.ipynb_checkpoints | ||
*/.ipynb_checkpoints/* | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# Remove previous ipynb_checkpoints | ||
# git rm -r .ipynb_checkpoints/ | ||
|
||
### Python ### | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
pip-wheel-metadata/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# pipenv | ||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | ||
# However, in case of collaboration, if having platform-specific dependencies or dependencies | ||
# having no cross-platform support, pipenv may install dependencies that don't work, or not | ||
# install all needed dependencies. | ||
#Pipfile.lock | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# Mr Developer | ||
.mr.developer.cfg | ||
.project | ||
.pydevproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
<<<<<<< HEAD | ||
# End of https://www.gitignore.io/api/python,jupyternotebooks | ||
======= | ||
# End of https://www.gitignore.io/api/python,jupyternotebooks | ||
>>>>>>> gpu | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
|
||
before_install: | ||
- sudo apt-get -y install python3-pip python-dev | ||
- sudo pip3 install -U setuptools | ||
|
||
install: | ||
- pip install -r requeriments.txt | ||
- pip install . | ||
|
||
script: | ||
- pytest | ||
|
||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Suggestion: it's better to move travis CI to Github Actions. I implemented it in irinaespejo/excursion github actions. we can reuse that code. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: remove
.gitignore
altogether. This is legacy from my GPyTorch excursion repo, sorry.