theano14_summary.py 1.1 KB

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