forked from MorvanZhou/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeano14_summary.py
36 lines (27 loc) · 1.12 KB
/
theano14_summary.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# View more python tutorials on my Youtube and Youku channel!!!
# Youtube video tutorial: https://www.youtube.com/channel/UCdyjiB5H8Pu7aDTNVXTTpcg
# Youku video tutorial: http://i.youku.com/pythontutorial
# 14 - summary
"""
==============================
Summary:
-----------------------------------------------
1. Understand the basic usage of Theano;
2. Built a regression neural networks;
3. Built a classification neural networks;
4. Understand the overfitting and the solutions for solving this problem;
5. Save your networks for future usage.
==============================
GPU computation:
-----------------------------------------------
Theano tutorial link: http://deeplearning.net/software/theano/tutorial/using_gpu.html
Requirement: NVIDIA cards and CUDA backend
==============================
Theano Convolutional Neural Networks:
----------------------------------------------
Theano tutorial link: http://deeplearning.net/tutorial/lenet.html
==============================
Theano Recurrent Neural Networks:
-----------------------------------------------
Theano tutorial link: http://deeplearning.net/tutorial/rnnslu.html
"""