Keras
What is Keras
Keras is a deep learning API written in Python, running on top of the machine learning platform TensorFlow. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result as fast as possible is key to doing good research.
Keras documentation: About Keras
Installation & compatibility
Keras comes packaged with TensorFlow 2 as tensorflow.keras
. To start using Keras, simply install TensorFlow 2.
Keras/TensorFlow are compatible with:
Python 3.5–3.8
Ubuntu 16.04 or later
Windows 7 or later
macOS 10.12.6 (Sierra) or later.
Install with Anaconda
Create new environment by conda
conda create -n tf
change to the env you have just built by conda:
activete tf
install TensorFlow/Keras you need:
conda install tensorflow-gpu=1.14
conda install -c conda-forge keras=2.2.5
Why use Keras?
Last updated