Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add chapter 12 and 13 Baysian models #1088

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

Merged
merged 29 commits into from
Aug 5, 2019
Merged
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
fca025f
chapter 18 learning
bruceyoungsysu Jun 14, 2019
db2a98b
add chapter 19
bruceyoungsysu Jun 15, 2019
b5253aa
move init dataset in NN learner
bruceyoungsysu Jun 15, 2019
dcf56db
add adam optimizer, add nn learner
bruceyoungsysu Jun 15, 2019
72a8b19
Merge remote-tracking branch 'upstream/master' into learning
bruceyoungsysu Jun 15, 2019
e5fb00c
remove cpt 19 for debug
bruceyoungsysu Jun 16, 2019
765e0a1
change while loop in games4e
bruceyoungsysu Jun 16, 2019
339bfc7
add chapter 19
bruceyoungsysu Jun 16, 2019
9474929
add sgd and adam optimizer
bruceyoungsysu Jun 18, 2019
f966d1b
add chpt19 deep nn
bruceyoungsysu Jun 18, 2019
2f870cb
add rnn
bruceyoungsysu Jun 20, 2019
06ebd78
add auto encoder
bruceyoungsysu Jun 20, 2019
13aaf74
add comments, correct tests
bruceyoungsysu Jun 23, 2019
2799614
add more comments, change algorithms according to orders of chapter s…
bruceyoungsysu Jun 30, 2019
7975f4a
add keras and numpy to requirements
bruceyoungsysu Jun 30, 2019
cf764fa
add tf as requirement
bruceyoungsysu Jun 30, 2019
2f9d689
add gc in test agent
bruceyoungsysu Jun 30, 2019
09a664e
fix agent bugs for running test_agent and test_agent_4e together
bruceyoungsysu Jul 1, 2019
8814b2a
fix build error
bruceyoungsysu Jul 1, 2019
3bcbfc1
add chapter 21 and 22
bruceyoungsysu Jul 5, 2019
c8c0618
add chapter 12 and part of 13
bruceyoungsysu Jul 14, 2019
fa88fa7
remove chapter 12 and 13, add test of rl
bruceyoungsysu Jul 14, 2019
b74decf
modify rnn test
bruceyoungsysu Jul 14, 2019
21f7a88
add chapter 12 and 13
bruceyoungsysu Jul 21, 2019
d0c090b
change gaussian kernel util function
bruceyoungsysu Jul 21, 2019
6ffeb89
fix example bugs
bruceyoungsysu Jul 21, 2019
7f5a67f
fix build bug
bruceyoungsysu Jul 26, 2019
ef3e831
Merge branch 'master' into bayes_models
bruceyoungsysu Aug 4, 2019
7408213
Merge branch 'master' into bayes_models
bruceyoungsysu Aug 5, 2019
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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ install:
- pip install tensorflow
- pip install opencv-python


script:
- py.test --cov=./
- python -m doctest -v *.py
Expand Down
3 changes: 2 additions & 1 deletion DeepNeuralNet4e.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import math
import statistics
from utils4e import sigmoid, dotproduct, softmax1D, conv1D, GaussianKernel, element_wise_product, \

from utils4e import sigmoid, dotproduct, softmax1D, conv1D, gaussian_kernel_2d, GaussianKernel, element_wise_product, \
vector_add, random_weights, scalar_vector_product, matrix_multiplication, map_vector
import random

Expand Down
Loading