| 12345678910111213141516171819202122232425262728 |
- """
- To know more or get code samples, please visit my website:
- https://mofanpy.com/tutorials/
- Or search: 莫烦Python
- Thank you for supporting!
- """
- # please note, all tutorial code are running under python3.5.
- # If you use the version like python2.7, please modify the code accordingly
- # 2 - Installation
- """
- ---------------------------
- 1. Make sure you have installed the following dependencies for Keras:
- - Numpy
- - Scipy
- for install numpy and scipy, please refer to my video tutorial:
- https://www.youtube.com/watch?v=JauGYB-Bzuw&list=PLXO45tsB95cKKyC45gatc8wEc3Ue7BlI4&index=2
- ---------------------------
- 2. run 'pip install keras' in command line for python 2+
- Or 'pip3 install keras' for python 3+
- If encounter the error related to permission, then use 'sudo pip install ***'
- ---------------------------
- """
|