Skip to content

Commit

Permalink
Move example notebooks (minerva-ml#1)
Browse files Browse the repository at this point in the history
* Add tutorial notebooks

* Make notebooks work

* Remove checkpoint added by mistake

* Add example 4-caching-persistence.ipynb

* refactor

* moved intro.ipynb from steppy core lib.

* Update .gitignore
  • Loading branch information
grzes314 authored and Kamil A. Kaczmarek committed May 23, 2018
1 parent 422ada3 commit 8874ebe
Show file tree
Hide file tree
Showing 8 changed files with 4,080 additions and 0 deletions.
117 changes: 117 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.pytest_cache
tests/.cache

# C extensions
*.so

# neptune, pycharm
.cache
.cache/
.idea/
.idea_modules/
out/
output
output/
*.log
target/
devbook.ipynb
devbook_local.ipynb

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# 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/
.coverage
.coverage.*
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# Jupyter Notebook
Untitled*.ipynb
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# Working directories
examples/cache/
tutorials/examples/cache/
Loading

0 comments on commit 8874ebe

Please sign in to comment.