Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Sep 15, 2017
1 parent 834ae1a commit ecdfbf9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,17 @@ addons:
install:
- sudo apt-get update
- source .travis/install_travis_env.sh

before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start

script:
- bash .travis/run_travis_tests.sh
#after_success:
# - if [[ "${COVERAGE}" == "true" ]]; then coveralls; codecov; else echo "failed"; fi

notifications:
email:
recipients:
Expand Down
10 changes: 5 additions & 5 deletions code/ch12/ch12.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion code/ch12/ch12.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class NeuralNetMLP(object):
Learning rate.
shuffle : bool (default: True)
Shuffles training data every epoch if True to prevent circles.
minibatche_size : int (default: 1)
minibatch_size : int (default: 1)
Number of training samples per minibatch.
seed : int (default: None)
Random seed for initalizing weights and shuffling.
Expand Down
Binary file modified code/ch12/images/12_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion code/ch12/neuralnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class NeuralNetMLP(object):
Learning rate.
shuffle : bool (default: True)
Shuffles training data every epoch if True to prevent circles.
minibatche_size : int (default: 1)
minibatch_size : int (default: 1)
Number of training samples per minibatch.
seed : int (default: None)
Random seed for initalizing weights and shuffling.
Expand Down

0 comments on commit ecdfbf9

Please sign in to comment.