Skip to content

Commit 45df7d3

Browse files
author
Mofan Zhou
committedJul 30, 2016
update theano TUT
1 parent 7997120 commit 45df7d3

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed
 

‎theanoTUT/theano13_save/for_you_to_practice.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
44
# Youku video tutorial: http://i.youku.com/pythontutorial
55

6-
# 7 - save and reload
6+
# 13 - save and reload
77
"""
88
Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly.
99
"""

‎theanoTUT/theano13_save/full_code.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
44
# Youku video tutorial: http://i.youku.com/pythontutorial
55

6-
# 7 - save and reload
6+
# 13 - save and reload
77
"""
88
Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly.
99
"""

‎theanoTUT/theano14_summary.py

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# View more python tutorials on my Youtube and Youku channel!!!
2+
3+
# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
4+
# Youku video tutorial: http://i.youku.com/pythontutorial
5+
6+
# 14 - summary
7+
8+
"""
9+
==============================
10+
Summary:
11+
-----------------------------------------------
12+
1. Understand the basic usage of Theano;
13+
2. Built a regression neural networks;
14+
3. Built a classification neural networks;
15+
4. Understand the overfitting and the solutions for solving this problem;
16+
5. Save your networks for future usage.
17+
18+
==============================
19+
GPU computation:
20+
-----------------------------------------------
21+
Theano tutorial link: http://deeplearning.net/software/theano/tutorial/using_gpu.html
22+
Requirement: NVIDIA cards and CUDA backend
23+
24+
==============================
25+
Theano Convolutional Neural Networks:
26+
----------------------------------------------
27+
Theano tutorial link: http://deeplearning.net/tutorial/lenet.html
28+
29+
30+
==============================
31+
Theano Recurrent Neural Networks:
32+
-----------------------------------------------
33+
Theano tutorial link: http://deeplearning.net/tutorial/rnnslu.html
34+
35+
36+
"""

0 commit comments

Comments
 (0)
Please sign in to comment.