Building Thousands of Reproducible ML Models with pipe
1–10 of 12 posts
Re: Building Thousands of Reproducible ML Models with pipe
#2Re: Building Thousands of Reproducible ML Models with pipe
#3No source link? No access to this "magical pipe"? Is this a showcase of proprietary software?
Re: Building Thousands of Reproducible ML Models with pipe
#4No source link? No access to this "magical pipe"? Is this a showcase of proprietary software?
Re: Building Thousands of Reproducible ML Models with pipe
#5https://datadotblog.files.wordpress.com/2018/12/Screen-Shot-...
It mentions how it's 'impossible' to separate the data points in cartesian coodinates. Isn't logistic regression exactly the use case for this? Thus making the transformation irrelevant?
Anyone with ML experience have an opinion on this?
Re: Building Thousands of Reproducible ML Models with pipe
#6I started taking the Coursera ML class. Reading this article, something jumped at me: https://datadotblog.files.wordpress.com/2018/12/Screen-Shot-... It mentions how it's 'impossible' to separate the data points in cartesian coodinates. Isn't logistic regression exactly the use case for this? Thus making the transformation irrelevant? Anyone with ML experience have an opinion on this?
Re: Building Thousands of Reproducible ML Models with pipe
#7I started taking the Coursera ML class. Reading this article, something jumped at me: https://datadotblog.files.wordpress.com/2018/12/Screen-Shot-... It mentions how it's 'impossible' to separate the data points in cartesian coodinates. Isn't logistic regression exactly the use case for this? Thus making the transformation irrelevant? Anyone with ML experience have an opinion on this?
Yes, this is why we use regression, soft-margin SVM, etc. instead of hard-margin SVM. Because perfect linear separation is unrealistic.
Re: Building Thousands of Reproducible ML Models with pipe
#8Re: Building Thousands of Reproducible ML Models with pipe
#9I started taking the Coursera ML class. Reading this article, something jumped at me: https://datadotblog.files.wordpress.com/2018/12/Screen-Shot-... It mentions how it's 'impossible' to separate the data points in cartesian coodinates. Isn't logistic regression exactly the use case for this? Thus making the transformation irrelevant? Anyone with ML experience have an opinion on this?
No, linear regression does not imply separation. Yes, this is why we use regression, soft-margin SVM, etc. instead of hard-margin SVM. Because perfect linear separation is unrealistic.
Logistic Regression based classification (with quadratic theta parameters) would seem to certainly be able to handle the cartesian case (without having to resort to convert into polar coordinates).
Re: Building Thousands of Reproducible ML Models with pipe
#10Earlier quoted context omitted.
No, linear regression does not imply separation. Yes, this is why we use regression, soft-margin SVM, etc. instead of hard-margin SVM. Because perfect linear separation is unrealistic.
Please note I wrote 'Logistic Regression' and not 'Linear Regression' (as you seem to think). Logistic Regression based classification (with quadratic theta parameters) would seem to certainly be able to handle the cartesian case (without having to resort to convert into polar coordinates).
And yes, it can handle it, by finding a "optimal" boundary according to a criterion other than "is it separated or not?". But that's not the point. The data remains inseparable.
And yes, while logistic regression can technically handle this case (by returning a solution and not blowing up), it will perform poorly unless you transform the data, because the decision boundary is still linear.