GithubHelp home page GithubHelp logo

coursera-machine-learning-stanford's People

Contributors

atinesh-s avatar sailakshmi17 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  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

coursera-machine-learning-stanford's Issues

About the course

Are some of the assignments in the course peer graded? And getting stuck if someone picks up a snippet or two would he be marked for plag?

Matrix dimensions does not match!

In nnCostFunction, when trying to calculate J = (1/m) * sum ( sum ( (-Y) .* log(output) - (1-Y) .* log(1-output) )); I get an error that says: Matrix dimensions must agree.

Error while submitting the assignment

Hello,
I am using your GitHub repository for submitting the assignment from the above-mentioned course. Now it is convenient to work in python for machine learning, I am trying to directly submit the answers from your repository using octave.
But I am facing the below issue while submitting the assignment.

"!! Submission failed: unexpected error: urlread: HTTP response code said er"

I would be grateful if I get help with the above issue.
Thanks and regards,
Dhanraj Mane

Detailed Answers

First of all, thanks for your effort. It would be nice if you provide the steps to getting the answers.

For example, Quiz 4 -- First question

3.2.1 Selecting learning rate (week2) return weird value

The value of theta computed is [ 340412.65957447 109447.79558639 -6578.3539709 ] which means the more bedroom you have, the lower the price. I find this kinda weird, is it true? Also I tried to compute some samples from the dataset and the difference is kinda big (about 10%).

May there be any problems with the code?

For loop

Hey.... Thanks for everything you've been doing.... It really helps....... But I have a little issue.... It keeps telling me that there is a syntax error in the for loop

Issue in running GradientDescent

Hi, Still getting error,

gradientDescent
Not enough input arguments.

Error in gradientDescent (line 7)
m = length(y); % number of training examples

Vectorization of matrix

X_norm = (X - (t * mu)) ./ (t * sigma); %vectorized

In above Octave code, if X is 97 x 3 matrix then will it implicitly get converted to column vector?

Have a teeny problem

Hey !

Could you show how you got the answer for week 2 quiz 4 as 0.32 ?

Thanks in advance.

Need more discussion

  1. In quiz 8, question 4, why answer B is not correct.

  2. In assignment 2, For calculating costFunctionReg, I have done

h = sigmoid(X*theta);
theta_temp = [0; theta(2:end)];
J = (1/m)* sum((-y'*log(h)) - ((1-y)'*log(1-h))) + (lambda / (2*m)) * sum(theta .^ 2);
grad = (1/m)* sum((h-y)*X) + (lambda/m).*theta_temp;

My J is calculated as expected but getting error in grad. My code is same as like derivation (as I am seeing) but still unable to fig out where I am wrong. Whereas you are not using sum func but still your code is working fine. Can you pls explain how it is working?

Love you man

Thanks for all of these.

Question, what other online course do you reccomend?

Greetings from Argentina.

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.