All Projects → khanhnamle1994 → deep-learning

khanhnamle1994 / deep-learning

Licence: other
Assignmends done for Udacity's Deep Learning MOOC with Vincent Vanhoucke

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to deep-learning

Human-Activity-Recognition
Human activity recognition using TensorFlow on smartphone sensors dataset and an LSTM RNN. Classifying the type of movement amongst six categories (WALKING, WALKING_UPSTAIRS, WALKING_DOWNSTAIRS, SITTING, STANDING, LAYING).
Stars: ✭ 16 (-82.98%)
Mutual labels:  recurrent-neural-networks
Name-NationalOrigin-Classifier
Using a recurrent neural network in TensorFlow to predict national origin by last name.
Stars: ✭ 30 (-68.09%)
Mutual labels:  recurrent-neural-networks
VariationalNeuralAnnealing
A variational implementation of classical and quantum annealing using recurrent neural networks for the purpose of solving optimization problems.
Stars: ✭ 21 (-77.66%)
Mutual labels:  recurrent-neural-networks
sequence labeling tf
Sequence Labeling in Tensorflow
Stars: ✭ 18 (-80.85%)
Mutual labels:  recurrent-neural-networks
keras-ordered-neurons
Ordered Neurons LSTM
Stars: ✭ 29 (-69.15%)
Mutual labels:  recurrent-neural-networks
Reservoir
Code for Reservoir computing (Echo state network)
Stars: ✭ 40 (-57.45%)
Mutual labels:  recurrent-neural-networks
roboinstruct-1
A robot learning from demonstration framework that trains a recurrent neural network for autonomous task execution
Stars: ✭ 71 (-24.47%)
Mutual labels:  recurrent-neural-networks
Deep-Learning-Tensorflow
Gathers Tensorflow deep learning models.
Stars: ✭ 50 (-46.81%)
Mutual labels:  recurrent-neural-networks
Music-Style-Transfer
Source code for "Transferring the Style of Homophonic Music Using Recurrent Neural Networks and Autoregressive Model"
Stars: ✭ 16 (-82.98%)
Mutual labels:  recurrent-neural-networks
bitcoin-prediction
bitcoin prediction algorithms
Stars: ✭ 21 (-77.66%)
Mutual labels:  recurrent-neural-networks
pomdp-baselines
Simple (but often Strong) Baselines for POMDPs in PyTorch - ICML 2022
Stars: ✭ 162 (+72.34%)
Mutual labels:  recurrent-neural-networks
iust deep fuzz
Advanced file format fuzzer based-on deep neural language models.
Stars: ✭ 36 (-61.7%)
Mutual labels:  recurrent-neural-networks
fin
finance
Stars: ✭ 38 (-59.57%)
Mutual labels:  recurrent-neural-networks
Introduction-to-Deep-Learning-and-Neural-Networks-Course
Code snippets and solutions for the Introduction to Deep Learning and Neural Networks Course hosted in educative.io
Stars: ✭ 33 (-64.89%)
Mutual labels:  recurrent-neural-networks
stanford-cs231n-assignments-2020
This repository contains my solutions to the assignments for Stanford's CS231n "Convolutional Neural Networks for Visual Recognition" (Spring 2020).
Stars: ✭ 84 (-10.64%)
Mutual labels:  recurrent-neural-networks
unicornn
Official code for UnICORNN (ICML 2021)
Stars: ✭ 21 (-77.66%)
Mutual labels:  recurrent-neural-networks
LSTM-Time-Series-Analysis
Using LSTM network for time series forecasting
Stars: ✭ 41 (-56.38%)
Mutual labels:  recurrent-neural-networks
datastories-semeval2017-task6
Deep-learning model presented in "DataStories at SemEval-2017 Task 6: Siamese LSTM with Attention for Humorous Text Comparison".
Stars: ✭ 20 (-78.72%)
Mutual labels:  recurrent-neural-networks
bruno
a deep recurrent model for exchangeable data
Stars: ✭ 34 (-63.83%)
Mutual labels:  recurrent-neural-networks
handson-ml
도서 "핸즈온 머신러닝"의 예제와 연습문제를 담은 주피터 노트북입니다.
Stars: ✭ 285 (+203.19%)
Mutual labels:  recurrent-neural-networks

Here are the assignments I have finished for the class:

  • Assignment 1: Preprocess notMNIST data and train a simple logistic regression model on it
  • Assignment 2: Train a fully-connected network using Gradient Descent and Stochastic Gradient Descent
  • Assignment 3: Use regularization techniques to improve a deep learning model
  • Assignment 4: Design and train a Convolutional Neural Network
  • Assignment 5: Train a skip-gram model on Text8 data and visualize the output
  • Assignment 6: Train a Long Short-Term Memory network to predict character sequences

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

WordVectors

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.

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].