Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented gradient descent in C++ #352

Merged
merged 3 commits into from
Oct 20, 2018
Merged

Implemented gradient descent in C++ #352

merged 3 commits into from
Oct 20, 2018

Conversation

Mysjkin
Copy link
Contributor

@Mysjkin Mysjkin commented Oct 18, 2018

Description

I have implemented a simple version of gradient descent in c++ for a univariate linear regression.

  • Added a folder called Gradient descent in the machine learning folder
  • Added a file called SimpleGradientDescent.cpp that implements gradient descent for a linear regression.
  • Added a file called utility.h which are simple utility methods I used and can be used by others in other variants of gradient descent.
  • Added a readme that documents the basic aspects of gradient descent optimisation.

Related Issue

This pr resolves #335
Please link to the issue here: #335

How Has This Been Tested? (Optional)

It has been tested by learning the weights of a univariate linear function.

Types of changes

What types of changes does your code introduce? Put an x in all the boxes that apply:

  • Bug fix (change which fixes an issue with the algorithm)

  • New Algorithm (non-breaking change which adds functionality)

  • Documentation

Checklist:

Go over all the following points, and put an x in all the boxes that apply.

If you're unsure about any of these, don't hesitate to ask. We're here to help!

  • My code follows the code style of this project.

  • My change requires a change to the documentation.

  • I have updated the documentation accordingly.

  • I have read the CONTRIBUTING document.

Split data into x and y data vectors, instead of containing it all inside one data vector.
@Mysjkin Mysjkin changed the title Impl gradient descent Implemented gradient descent in C++ Oct 18, 2018
@tstreamDOTh tstreamDOTh merged commit d5eec87 into Asiatik:master Oct 20, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implementing Gradient Descent in C++
2 participants