Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/iambedant/cmrit-deeplearning-techtalk-demo
- Owner: iamBedant
- License: mit
- Created: 2018-07-19T06:13:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T11:10:31.000Z (over 6 years ago)
- Last Synced: 2024-12-18T01:09:39.157Z (about 2 months ago)
- Topics: deeplearning, keras, mnist, neural-network, tensorflow
- Language: Jupyter Notebook
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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