Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iambedant/cmrit-deeplearning-techtalk-demo

Sample code for "Introduction to Deep Learning and Neural Networks" presentation.
https://github.com/iambedant/cmrit-deeplearning-techtalk-demo

deeplearning keras mnist neural-network tensorflow

Last synced: about 2 months ago
JSON representation

Sample code for "Introduction to Deep Learning and Neural Networks" presentation.

Awesome Lists containing this project

README

        

# CMRIT-Deeplearning-TechTalk-Demo
Sample code for "Introduction to Deep Learning and Neural Networks" presentation.
Presentation link here

## Setup your machine
### 1.Download Anaconda
Download Link from https://www.anaconda.com/download
### 2.Update Conda
update conda in your default environment
$ conda upgrade conda
$ conda upgrade --all
### 3.Create a new environment with conda
$ conda create -n [env-name]
### 4.Activate the environment you created
$ source activate [env-name]
### 5.install pip
$ conda install pip
### 6.Install TensorFlow
$ conda install tensorflow
$ pip install --upgrade tensorflow
### 7.Install Keras
$ pip install keras
### 8. Install Jupyter Notebook
$ pip install jupyter