In this shot, we will go over how to use Keras with Anaconda.
Keras is a minimalist, highly modular neural networks library written in Python and capable of running on top of either TensorFlow or Theano.
Read more about Keras here.
conda create --name KerasExample
activate KerasExample
conda install -c anaconda keras-gpu
conda install -c anaconda keras
That’s it. You have installed Keras in your conda environment!
Free Resources