All Projects → rndbrtrnd → Udacity Deep Learning

rndbrtrnd / Udacity Deep Learning

Licence: mit
Udacity Deep Learning MOOC assignments

Projects that are alternatives of or similar to Udacity Deep Learning

Cvnd Udacity
Computer Vision Nanodegree program from Udacity
Stars: ✭ 52 (-88.77%)
Mutual labels:  jupyter-notebook, udacity
Vehicle Detection
Vehicle detection using machine learning and computer vision techniques for Udacity's Self-Driving Car Engineer Nanodegree.
Stars: ✭ 1,093 (+136.07%)
Mutual labels:  jupyter-notebook, udacity
Particle Filter Prototype
Particle Filter Implementations in Python and C++, with lecture notes and visualizations
Stars: ✭ 29 (-93.74%)
Mutual labels:  jupyter-notebook, udacity
Machine Learning
머신러닝 입문자 혹은 스터디를 준비하시는 분들에게 도움이 되고자 만든 repository입니다. (This repository is intented for helping whom are interested in machine learning study)
Stars: ✭ 705 (+52.27%)
Mutual labels:  jupyter-notebook, udacity
Udacity Machine Learning Nanodegree
All projects and lecture notes of the Udacity Machine Learning Engineer Nanodegree.
Stars: ✭ 171 (-63.07%)
Mutual labels:  jupyter-notebook, udacity
Advanced Lane Detection
An advanced lane-finding algorithm using distortion correction, image rectification, color transforms, and gradient thresholding.
Stars: ✭ 71 (-84.67%)
Mutual labels:  jupyter-notebook, udacity
Lung Diseases Classifier
Diseases Detection from NIH Chest X-ray data
Stars: ✭ 52 (-88.77%)
Mutual labels:  jupyter-notebook, udacity
Aind Nlp
Coding exercises for the Natural Language Processing concentration, part of Udacity's AIND program.
Stars: ✭ 202 (-56.37%)
Mutual labels:  jupyter-notebook, udacity
Yolo resnet
Implementing YOLO using ResNet as the feature extraction network
Stars: ✭ 82 (-82.29%)
Mutual labels:  jupyter-notebook, udacity
Allstate capstone
Allstate Kaggle Competition ML Capstone Project
Stars: ✭ 72 (-84.45%)
Mutual labels:  jupyter-notebook, udacity
Deep Learning Notes
My personal notes, presentations, and notebooks on everything Deep Learning.
Stars: ✭ 191 (-58.75%)
Mutual labels:  jupyter-notebook, udacity
Stanford Cs231
Resources for students in the Udacity's Machine Learning Engineer Nanodegree to work through Stanford's Convolutional Neural Networks for Visual Recognition course (CS231n).
Stars: ✭ 249 (-46.22%)
Mutual labels:  jupyter-notebook, udacity
Covidify
Covidify - corona virus report and dataset generator for python 📈
Stars: ✭ 456 (-1.51%)
Mutual labels:  jupyter-notebook
Pba
Efficient Learning of Augmentation Policy Schedules
Stars: ✭ 461 (-0.43%)
Mutual labels:  jupyter-notebook
Jupyter Dash
Develop Dash apps in the Jupyter Notebook and JupyterLab
Stars: ✭ 453 (-2.16%)
Mutual labels:  jupyter-notebook
Courses
Quiz & Assignment of Coursera
Stars: ✭ 454 (-1.94%)
Mutual labels:  jupyter-notebook
Instcolorization
Stars: ✭ 461 (-0.43%)
Mutual labels:  jupyter-notebook
Memeproject
Dank Learning codebase, generate a meme from any image using AI. Uses a modified version of the Show and Tell image captioning network
Stars: ✭ 459 (-0.86%)
Mutual labels:  jupyter-notebook
Spark Nlp Workshop
Public runnable examples of using John Snow Labs' NLP for Apache Spark.
Stars: ✭ 452 (-2.38%)
Mutual labels:  jupyter-notebook
Cryptocurrencyprediction
Predict Cryptocurrency Price with Deep Learning
Stars: ✭ 453 (-2.16%)
Mutual labels:  jupyter-notebook

udacity-deep-learning

Assignments of the Udacity MOOC Deep Learning

This repository contains the assignments I have done during the Udacity MOOC on Deep Learning with Google. The course is free but there is no support expect if you register to a nanodegree program. That's why I'm sharing my homeworks with as much comments as possible, you may find them useful.

Disclaimer: there is probably a code of conduct if you are enrolled in the nanodegree. Copying the code from the repository and pretending it to be sure would be bad. Even looking into it may be an infringement. Talk to your instructor.

The course is just great! You will use and develop neural networks for image recognition with convolution, natural language processing with embeddings and character based text generation with RNN/LTSM.

See below an outcome of one of the assignments, a t-SNE projection of word vectors, clustered by similarity.

t-SNE projection of word vectors clustered by similarities

Amazing, isn't it?

Installation and setup

Since the datasets are loaded in memory, 4 GB of RAM are short to run the notebooks, 8 GB will be more comfortable. The instructions are given for Mac OS, but it works on Linux as well.

I recommend to install the Python bundle Anaconda. All the assignments have been done with Python 2.7, so download the installation script accordingly. You can then install Jupyter Notebook from conda.

The next step is to install TensorFlow. At the time of writing, the latest release is r0.9, after several upgrades during the course. You can refer to the official documentation. Here is the list of commands:

$ conda create -n tensorflow python=2.7
$ source activate tensorflow
(tensorflow)$ export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/mac/tensorflow-0.9.0-py2-none-any.whl
(tensorflow)$ pip install --upgrade --ignore-installed $TF_BINARY_URL

You can now grab the assignments from here to run my code or the stubs from the TensorFlow repository. All the other prerequisites (like numpy) have to be installed on the fly.

Quick start

From the repository root, start the Notebook server with jupyter notebook.

Contributions

This repository is mainly for my own purpose but I would be happy to share some thoughts with you. There are probably many ways to improve and tune the various neural nets.

To do so, just fork this repository.

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].