Git Product home page Git Product logo

coursera-ml's Introduction

Coursera Machine Learning Assigments

Assignments were completed with GNU Octave, version 3.8.0

Course Schedule

Week 1 (available March 3)

Introduction

Linear Regression with One Variable

(Optional) Linear Algebra Review

Week 2 (available March 3)

Linear Regression with Multiple Variables

Octave Tutorial

Programming Exercise 1 (Linear regression)

Week 3 (available March 24)

Logistic Regression

Regularization

Programming Exercise 2 (Logistic regression)

Week 4 (available March 31)

Neural Networks: Representation

Programming Exercise 3 (Multi-class classification and neural networks)

Week 5 (available April 7)

Neural Networks: Learning

Programming Exercise (Neural network learning)

Week 6 (available April 14)

Advice for Applying Machine Learning

Machine Learning System Design

Programming Exercise (Bias-variance)

Week 7 (available April 21)

Support Vector Machines (SVMs)

Programming Exercise (SVMs)

Week 8 (available April 28)

Clustering

Dimensionality Reduction

Programming Exercise (K-Means and PCA)

Week 9 (available May 5)

Anomaly Detection

Recommender Systems

Programming Exercise (Anomaly Detection and Recommender Systems)

Week 10

Large-Scale Machine Learning

Example of an application of machine learning

coursera-ml's People

Contributors

gopaczewski avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

coursera-ml's Issues

Small question with this problem

`function J = computeCost(X, y, theta)
%COMPUTECOST Compute cost for linear regression
% J = COMPUTECOST(X, y, theta) computes the cost of using theta as the
% parameter for linear regression to fit the data points in X and y

% Initialize some useful values
m = length(y); % number of training examples

% You need to return the following variables correctly
J = 0;

% ====================== YOUR CODE HERE ======================
% Instructions: Compute the cost of a particular choice of theta
% You should set J to the cost.

% Loop implementation
%for i = 1:m,
% J = J + (((X(i,:) * theta) - y(i)) ^ 2);
%end;

% Vectorized implementation
J = sum(((X * theta) - y) .^ 2); %why it is (X * theta) and not (theta * X)

J = 1 / (2 * m) * J; //

% =========================================================================

end`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.