Can I run Keras model on gpu?

Yes you can run keras models on GPU. Few things you will have to check first. your system has GPU (Nvidia. As AMD doesn’t work yet) You have installed the GPU version of tensorflow You have installed CUDA installation instructions Verify that tensorflow is running with GPU check if GPU is working sess = tf.Session(config=tf.ConfigProto(log_device_placement=True)) … Read more

How to change the default browser used by the ipython/jupyter notebook in Linux?

You can create jupyter_notebook_config.py by: jupyter notebook –generate-config Then you go to ~/.jupyter/jupyter_notebook_config.py and change # c.NotebookApp.browser=”” to for example: c.NotebookApp.browser=”/usr/bin/google-chrome %s” You can choose which ever browser is installed. You’ll find the path for example by typing which firefox Do not forget to delete the #

Link Conda environment with Jupyter Notebook

For Anaconda I suggest you a much easier and proper solution; just give a look at the nb_conda_kernels package. It allows you to “manage your conda environment-based kernels inside the Jupyter Notebook”. Is should be included since Anaconda version 4.1.0, otherwise simply use conda install nb_conda Now you should be able to manage all direcly … Read more