Skip to content

Commit 48ae363

Browse files
committed
Noting compatibility, and (lack of) future plans
1 parent 86b38f5 commit 48ae363

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
# Code samples for "Neural Networks and Deep Learning"
22

3-
This repository contains code samples for my (forthcoming) book on
4-
"Neural Networks and Deep Learning".
3+
This repository contains code samples for my book on ["Neural Networks
4+
and Deep Learning"](http://neuralnetworksanddeeplearning.com).
5+
6+
The code is written for Python 2.6 or 2.7. Michal Daniel Dobrzanski
7+
has a repository for Python 3
8+
[here](https://github.com/MichalDanielDobrzanski/DeepLearningPython35). I
9+
will not be updating the current repository for Python 3
10+
compatibility.
11+
12+
The program `src/network3.py` uses version 0.6 or 0.7 of the Theano
13+
library. It needs modification for compatibility with later versions
14+
of the library. I will not be making such modifications.
515

616
As the code is written to accompany the book, I don't intend to add
7-
new features. However, bug reports are welcome, and you should feel
17+
new features. However, bug reports are welcome, and you should feel
818
free to fork and modify the code.
919

1020
## License

src/network3.py

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
implementation of dropout (https://github.com/mdenil/dropout ), and
2626
from Chris Olah (http://colah.github.io ).
2727
28+
Written for Theano 0.6 and 0.7, needs some changes for more recent
29+
versions of Theano.
30+
2831
"""
2932

3033
#### Libraries

0 commit comments

Comments
 (0)