All Projects → danluu → Ufldl Tutorial

danluu / Ufldl Tutorial

Deep Learning and Unsupervised Feature Learning Tutorial Solutions

Projects that are alternatives of or similar to Ufldl Tutorial

Deep Learning In Python
Hands-on, practical knowledge of how to use neural networks and deep learning with Keras 2.0
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
Bayesian Neural Network Blogpost
Building a Bayesian deep learning classifier
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook
Latent 3d points
Auto-encoding & Generating 3D Point-Clouds.
Stars: ✭ 385 (+0%)
Mutual labels:  jupyter-notebook
Daily Deeplearning
🔥机器学习/深度学习/Python/算法面试/自然语言处理教程/剑指offer/machine learning/deeplearning/Python/Algorithm interview/NLP Tutorial
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
2020 benfords
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
Augmented Neural Odes
Pytorch implementation of Augmented Neural ODEs 🌻
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Quantumcomputingbook
Companion site for the textbook Quantum Computing: An Applied Approach
Stars: ✭ 386 (+0.26%)
Mutual labels:  jupyter-notebook
Vpgnet
VPGNet: Vanishing Point Guided Network for Lane and Road Marking Detection and Recognition (ICCV 2017)
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook
Transformers Tutorials
Github repo with tutorials to fine tune transformers for diff NLP tasks
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
Python4datascience.ch
从0开始接触Python处理数据科学问题。包含Python0基础入门、科学计算工具入门、数学与计算机基础入门、统计学习入门。
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Yolo V5
🎨 Pytorch YOLO v5 训练自己的数据集超详细教程!!! 🎨 (提供PDF训练教程下载)
Stars: ✭ 379 (-1.56%)
Mutual labels:  jupyter-notebook
2019 Cs109a
https://harvard-iacs.github.io/2019-CS109A/
Stars: ✭ 384 (-0.26%)
Mutual labels:  jupyter-notebook
Deep Learning From Scratch
深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签);慕课网imooc《深度学习之神经网络(CNN-RNN-GAN)算法原理-实战》
Stars: ✭ 381 (-1.04%)
Mutual labels:  jupyter-notebook
Supervisely Tutorials
🌈 Tutorials for Supervise.ly
Stars: ✭ 385 (+0%)
Mutual labels:  jupyter-notebook
Bert Multitask Learning
BERT for Multitask Learning
Stars: ✭ 380 (-1.3%)
Mutual labels:  jupyter-notebook
Human Activity Recognition Using Cnn
Convolutional Neural Network for Human Activity Recognition in Tensorflow
Stars: ✭ 382 (-0.78%)
Mutual labels:  jupyter-notebook
Vae cf
Variational autoencoders for collaborative filtering
Stars: ✭ 386 (+0.26%)
Mutual labels:  jupyter-notebook
Njucs Course Material From Yikaizhang
南京大学计算机系 课程资料 作业 代码 实验报告 NJU-CS 课程分享计划 🍚​
Stars: ✭ 383 (-0.52%)
Mutual labels:  jupyter-notebook
Dawp
Jupyter Notebooks and code for Derivatives Analytics with Python (Wiley Finance) by Yves Hilpisch.
Stars: ✭ 383 (-0.52%)
Mutual labels:  jupyter-notebook

These are solutions to the exercises up at the Stanford OpenClassroom Deep Learning class and Andrew Ng's UFLDL Tutorial. When I was solving these, I looked around for copies of the solutions so I could compare notes because debugging learning algorithms is often tedious in a way that isn't educational, but almost everything I found was incomplete or obviously wrong. I don't promise that these don't have bugs, but they at least give outputs within the range of the expected outputs for the assignments.

I've attempted to make this Octave compatible, so that you can run this with free software. It seems to work, but the results are slightly different. One side effect of this is that I'm using fminlbfgs instead of minFunc. It ran for me with Octave 3.6.4; my understanding is that Octave 3.8 and newer versions aren't completely backwards compatible, so you may run into problems with the current version of octave. Pull requests welcome, of course.

Here's the order of the exercises:

Stanford OpenClassroom Deep Learning class

  1. linear.m
  2. multiple.m
  3. logistic.m

Unsupervised Feature Learning and Deep Learning Tutorial

  1. Sparse Autoencoder: sparseae_exercise/train.m

  2. Vectorized Implementation: sparseae_exercise/train.m (1 is already vectorized)

3.1. PCA in 2d: pca_2d/pca_2d.m

3.2. PCA: pca_gen/pca_gen.m

  1. Softmax Regression: softmax_exercise/softmaxExercise.m

  2. Self-Taught Learning: stl_exercise/stlExercise.m

  3. Building Deep Networks for Classification: stackedae_exercise/stackedAEExercise.m

  4. Learning Color Features with Sparse Autoencoders: linear_decoder_exercise/linearDecoderExercise.m

  5. Convolution and Pooling: cnn_exercise/cnnExercise.m

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