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

add support for more Regression algorithms #8

Open
3 of 4 tasks
radumg opened this issue Feb 8, 2018 · 3 comments
Open
3 of 4 tasks

add support for more Regression algorithms #8

radumg opened this issue Feb 8, 2018 · 3 comments

Comments

@radumg
Copy link
Owner

radumg commented Feb 8, 2018

Add

  • SimpleLinearRegression

In linear regression, the model specification is that the dependent variable, y is a linear combination of the parameters (but need not be linear in the independent variables).

  • MultipleLinearRegression

  • MultivariateLinearRegression

  • LogisticRegression

It is a generalized linear model used for binomial regression.
Like many forms of regression analysis, it makes use of several predictor variables that may be either numerical or categorical.
For example, the probability that a person has a heart attack within a specified time period might be predicted from knowledge of the person's age, sex and body mass index.
Logistic regression is used extensively in the medical and social sciences as well as marketing applications such as prediction of a customer's propensity to purchase a product or cease a subscription.

Note : this should only be done after #2 and #7 are complete

@radumg
Copy link
Owner Author

radumg commented Feb 26, 2018

#2 & #7 are now done in PR #11, as is SimpleLinearRegression
Ready to now work on the rest.

radumg added a commit that referenced this issue Feb 26, 2018
- move algorithms to `AI.Algorithms` instead of `AI.MachineLearning`
- move Machine to `AI.Machine` instead of repeating `AI.Machine.Machine`
- get rid of old `Regression.cs` file that's no longer needed, see #8 for updated notes
@radumg radumg moved this from To Do to In progress in 1.0 abstracted ML machines + algos Feb 27, 2018
@radumg
Copy link
Owner Author

radumg commented Feb 27, 2018

Multiple Linear Regression added in PR #19
Multivariate added in PR #19 but crashes Dynamo spectacularly - likely a data type issue (double[] vs double[][])

@radumg
Copy link
Owner Author

radumg commented Feb 27, 2018

dependant on #20

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

No branches or pull requests

1 participant