Skip to content

Commit

Permalink
update version in setup.py
Browse files Browse the repository at this point in the history
update evaluate_batch_size in examples/example4_mnist_cnn.py
  • Loading branch information
monitor1379 committed Nov 29, 2016
1 parent 8e70028 commit 7b3c97c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ TensorFlow/Theano的Operator求导机制(Hamaa中为手动实现Operator的for

1. 彻底弄懂了神经网络中全连接层、激活层、卷积层、池化层的backpropagation过程及其向量化(vectorization)实现。

2. 了解到了softmax输出层为什么通常配合cross entropy损失函数以及negative log likelihood一起使用
2. 了解到了softmax输出层为什么通常配合cross entropy损失函数以及negative log likelihood优化方法一起使用

- 了解到了神经网络权重初始化的原因与各种方法。

Expand Down
2 changes: 1 addition & 1 deletion examples/example4_mnist_cnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
validation_data=validation_data,
log_epoch=1)

print model.evaluate_accuracy(test_data[0], test_data[1])
print model.evaluate_accuracy(test_data[0], test_data[1], evaluate_batch_size=64)

# visualize the kernels of convolution layer
vis_utils.visualize_convolution_kernel(model.layers[0], title='layer 0')
Expand Down
3 changes: 1 addition & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ pages:
- 教程 Tutorials: user/tutorials.md
- 例子 Examples: user/examples.md
- 开发 Development: developer/development.md
- 关于 About: about.md

- 关于 About: about.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# setup metadata
metadata = dict(
name='hamaa',
version='0.6.0',
version='0.7.0',
author='Zhenpeng Deng',
author_email='yy4f5da2@hotmail.com',
description=DOCLINES[0],
Expand Down

0 comments on commit 7b3c97c

Please sign in to comment.