Keras Introduction
Written by
荒岛书生
on
StartTime: 2017-11-17,ModifyTime:2017-11-27
Keras installion
Install keras Introduction link
Install tensorflow Introduction link
Other config, GPU&Theano
Requirement already satisfied:
- tensorflow
- numpy>=1.9.1
- six>=1.9.0
- pyyaml
- scipy>=0.14
pip3 install tensorflow pip3 install keras
Questions:
- install succefully and ‘import keras’ succefully in command line.But faild when using ‘python3 XXX.py’ command.
SOLUTION:
$ python3 >>> import sys >>> sys.path.insert(0, "/usr/local/lib/python3.5/dist-packages")
- install succefully and ‘import keras’ succefully in command line.But faild when using ‘python3 XXX.py’ command.
SOLUTION: