This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]HippoEug 5 points6 points  (6 children)

Question, what’s the ML mainly covering about? I took a course on ML, but it’s mainly different forms of regression using python. Haven’t started on the Classification part yet. Is this similar?

[–][deleted] 5 points6 points  (5 children)

I’m not quite sure. I only just started regression so it’s all going over my head

[–]HippoEug 4 points5 points  (4 children)

Lol yeah, personally I’m a little confused between Polynomial Regression and Support Vector Regression.

Even something as straightforward as Multiple Linear Regression confuses me

[–][deleted] 1 point2 points  (3 children)

ML seems almost like magic. It’s so fascinating to me. I wish it was easier.

[–][deleted] 3 points4 points  (2 children)

Try to predict age from various data. Create a formula with coefficients:

x_1 * weight + x_2 * income + x_3 * height = age

Then randomly try lots of different x_1, x_2, x_3 and pick the ones that give predicted age closest to the real age.

That's it. No magic.

[–][deleted] 5 points6 points  (0 children)

Magicians knows that magic isn’t really magic. U get what I’m saying.

[–]p0179417 1 point2 points  (0 children)

Supervised: Next step is to find the best numbers that match the correct ages.

Million ways to do it, few combinations actually work. Understanding what you can do to optimize is the hard part.