Skip to content
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

Chapter04 notebook #10

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
69c8580
Add Docker environiment
SnowMasaya Jul 31, 2017
7b64d91
Add Docker-gpu environiment
SnowMasaya Jul 31, 2017
34077ba
Add Makefile
SnowMasaya Jul 31, 2017
8213242
Add README
SnowMasaya Jul 31, 2017
a8d088f
Add gitignore
SnowMasaya Jul 31, 2017
afa8016
Add Chapter04 notebook
SnowMasaya Aug 2, 2017
108fb4b
Update Chapter04
SnowMasaya Aug 3, 2017
53a8bea
Update Chapter04 notebook
SnowMasaya Aug 16, 2017
59d50a9
Update Chapter04 notebook
SnowMasaya Aug 21, 2017
14c0bd4
Update makefile
SnowMasaya Sep 13, 2017
2aa8805
Add Dockerfile wavenet
SnowMasaya Sep 13, 2017
99f358f
Update Dockerfile gpu
SnowMasaya Sep 13, 2017
74facd3
Update Docker wavenet
SnowMasaya Sep 13, 2017
b418e86
Update Chapter04 notebook
SnowMasaya Sep 13, 2017
3d80aaf
Update cifar10 notebook
SnowMasaya Sep 13, 2017
5daf20d
Add get wave net data
SnowMasaya Sep 13, 2017
272079c
Add dataset
SnowMasaya Sep 13, 2017
afb8829
Add wavenet
SnowMasaya Sep 13, 2017
55e2b3e
Add wavenet util process
SnowMasaya Sep 13, 2017
3581041
Update makefile
SnowMasaya Sep 13, 2017
557b818
Update open port
SnowMasaya Sep 18, 2017
e811b23
Update keras2.0 api
SnowMasaya Sep 23, 2017
8114904
Update dockerfile
SnowMasaya Sep 23, 2017
d330741
Update gan
SnowMasaya Sep 24, 2017
ac0a846
Update Docker file
SnowMasaya Sep 24, 2017
9559743
Update cifar10
SnowMasaya Oct 9, 2017
38d8033
# Update example_gan_cifar10
SnowMasaya Oct 15, 2017
3d23b61
# Update wavenet
SnowMasaya Oct 15, 2017
bd9ffd9
# Update example gan cifar10
SnowMasaya Oct 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.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.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# DotEnv configuration
.env

# Database
*.db
*.rdb

# Pycharm
.idea

# Jupyter NB Checkpoints
.ipynb_checkpoints/

# exclude data from source control by default
cover/*
Loading