All Projects → vkosuri → Courseramachinelearning

vkosuri / Courseramachinelearning

Licence: mit
Coursera Machine Learning By Prof. Andrew Ng

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to Courseramachinelearning

Coursera Specializations
Solutions to assignments of Coursera Specializations - Deep learning, Machine learning, Algorithms & Data Structures, Image Processing and Python For Everybody
Stars: ✭ 72 (-52.63%)
Mutual labels:  coursera
Deeplearning.ai Convolutional Neural Networks
Completed assignment jupyter notebook of Foundations of Convolutional Neural Networks, deeplearning.ai coursera course
Stars: ✭ 109 (-28.29%)
Mutual labels:  coursera
Coursera Machinelearning
Homework about Machine Learning of Coursera taught by andrew ng
Stars: ✭ 123 (-19.08%)
Mutual labels:  coursera
Algorithmic Toolbox San Diego
✔ My Solutions of (Algorithmic-Toolbox ) Assignments from Coursera ( University of California San Diego ) With "Go In Depth" Part Which Contains More Details With Each of The Course Topics
Stars: ✭ 78 (-48.68%)
Mutual labels:  coursera
Coursera Java For Android
Solutions for the course Java for Android
Stars: ✭ 94 (-38.16%)
Mutual labels:  coursera
Robotics Coursework
🤖 Places where you can learn robotics (and stuff like that) online 🤖
Stars: ✭ 1,810 (+1090.79%)
Mutual labels:  coursera
Coursera Dl
Script for downloading Coursera.org videos and naming them.
Stars: ✭ 8,609 (+5563.82%)
Mutual labels:  coursera
Programming And Algorithm
这是北京大学在coursera上开设的「程序设计与算法」专项课程
Stars: ✭ 145 (-4.61%)
Mutual labels:  coursera
Deep Learning Coursera
Deep Learning Specialization by Andrew Ng on Coursera.
Stars: ✭ 95 (-37.5%)
Mutual labels:  coursera
Dl coursera
A simple, fast, and reliable Coursera crawling & downloading tool
Stars: ✭ 115 (-24.34%)
Mutual labels:  coursera
Google It Automation
google it automation with python professional certificate
Stars: ✭ 81 (-46.71%)
Mutual labels:  coursera
Daily Coding Problem
Series of the problem 💯 and solution ✅ asked by Daily Coding problem👨‍🎓 website.
Stars: ✭ 90 (-40.79%)
Mutual labels:  coursera
Coursera reinforcement learning
Coursera Reinforcement Learning Specialization by University of Alberta & Alberta Machine Intelligence Institute
Stars: ✭ 114 (-25%)
Mutual labels:  coursera
Coursera Machine Learning
Notes and Assignments for Andrew Ng's Machine Learning - Python3 code
Stars: ✭ 77 (-49.34%)
Mutual labels:  coursera
Deeplearning Notes
Notes for Deep Learning Specialization Courses led by Andrew Ng.
Stars: ✭ 126 (-17.11%)
Mutual labels:  coursera
Big Data Engineering Coursera Yandex
Big Data for Data Engineers Coursera Specialization from Yandex
Stars: ✭ 71 (-53.29%)
Mutual labels:  coursera
Ml Da Coursera Yandex Mipt
Machine Learning and Data Analysis Coursera Specialization from Yandex and MIPT
Stars: ✭ 108 (-28.95%)
Mutual labels:  coursera
Deep Learning Specialization Coursera
Deep Learning Specialization courses by Andrew Ng, deeplearning.ai
Stars: ✭ 146 (-3.95%)
Mutual labels:  coursera
Deeplearning.ai
Stars: ✭ 139 (-8.55%)
Mutual labels:  coursera
Coursera Cryptocurrency
Assignments from the Coursera course "Bitcoin and Cryptocurrency Technologies"
Stars: ✭ 115 (-24.34%)
Mutual labels:  coursera

Machine Learning By Prof. Andrew Ng 🌟🌟🌟🌟⭐️

This page continas all my coursera machine learning courses and resources 📖 by Prof. Andrew Ng 👨

Table of Contents

  1. Breif Intro
  2. Video lectures Index
  3. Programming Exercise Tutorials
  4. Programming Exercise Test Cases
  5. Useful Resources
  6. Schedule
  7. Extra Information
  8. Online E-Books
  9. Aditional Information

Breif Intro

The most of the course talking about hypothesis function and minimising cost funtions

Hypothesis

A hypothesis is a certain function that we believe (or hope) is similar to the true function, the target function that we want to model. In context of email spam classification, it would be the rule we came up with that allows us to separate spam from non-spam emails.

Cost Function

The cost function or Sum of Squeared Errors(SSE) is a measure of how far away our hypothesis is from the optimal hypothesis. The closer our hypothesis matches the training examples, the smaller the value of the cost function. Theoretically, we would like J(θ)=0

Gradient Descent

Gradient descent is an iterative minimization method. The gradient of the error function always shows in the direction of the steepest ascent of the error function. Thus, we can start with a random weight vector and subsequently follow the negative gradient (using a learning rate alpha)

Differnce between cost function and gradient descent functions

Cost Function Gradient Descent

            function J = computeCostMulti(X, y, theta)
                m = length(y); % number of training examples
                J = 0;
                predictions =  X*theta;
                sqerrors = (predictions - y).^2;
                J = 1/(2*m)* sum(sqerrors);
            end
            

            function [theta, J_history] = gradientDescentMulti(X, y, theta, alpha, num_iters)    
                m = length(y); % number of training examples
                J_history = zeros(num_iters, 1);
                for iter = 1:num_iters
                    predictions =  X * theta;
                    updates = X' * (predictions - y);
                    theta = theta - alpha * (1/m) * updates;
                    J_history(iter) = computeCostMulti(X, y, theta);
                end
            end
            

Bias and Variance

When we discuss prediction models, prediction errors can be decomposed into two main subcomponents we care about: error due to "bias" and error due to "variance". There is a tradeoff between a model's ability to minimize bias and variance. Understanding these two types of error can help us diagnose model results and avoid the mistake of over- or under-fitting.

Source: http://scott.fortmann-roe.com/docs/BiasVariance.html

Hypotheis and Cost Function Table

Algorithem Hypothesis Function Cost Function Gradient Descent
Linear Regression linear_regression_hypothesis linear_regression_cost
Linear Regression with Multiple variables linear_regression_hypothesis linear_regression_cost linear_regression_multi_var_gradient
Logistic Regression logistic_regression_hypothesis logistic_regression_cost logistic_regression_gradient
Logistic Regression with Multiple Variable logistic_regression_multi_var_cost logistic_regression_multi_var_gradient
Nural Networks nural_cost

Regression with Pictures

Video lectures Index

https://class.coursera.org/ml/lecture/preview

Programming Exercise Tutorials

https://www.coursera.org/learn/machine-learning/discussions/all/threads/m0ZdvjSrEeWddiIAC9pDDA

Programming Exercise Test Cases

https://www.coursera.org/learn/machine-learning/discussions/all/threads/0SxufTSrEeWPACIACw4G5w

Useful Resources

https://www.coursera.org/learn/machine-learning/resources/NrY2G

Schedule:

Week 1 - Due 07/16/17:

Week 2 - Due 07/23/17:

Week 3 - Due 07/30/17:

Week 4 - Due 08/06/17:

Week 5 - Due 08/13/17:

Week 6 - Due 08/20/17:

Week 7 - Due 08/27/17:

Week 8 - Due 09/03/17:

Week 9 - Due 09/10/17:

Week 10 - Due 09/17/17:

Week 11 - Due 09/24/17:

  • Application example: Photo OCR - pdf - ppt

Extra Information

Online E Books

Aditional Information

💥 Course Status 👇

coursera_course_completion

Links

Statistics Models

NLP forums

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