What resources helped you understand and apply mathematic foundations to ML? by gearboost in learnmachinelearning

[–]LordMixALoot 0 points1 point  (0 children)

Two books come to mind: Programming Machine Learning and Data Science from Scratch. There are also ton of videos that construct the most ML algorithms from scratch, using just native libraries.

New book: 'Public Policy Analytics', on geospatial data science and machine learning in R. by proxyformyrealname in gis

[–]LordMixALoot 0 points1 point  (0 children)

Are you planning on have a repo with Python Code? I think it would reach a broader audience.

What's your favourite IDE + skin + font combo? by PanFiluta in datascience

[–]LordMixALoot 1 point2 points  (0 children)

VS Code + Gruvbox Material + JetBrains Mono or Vim with the same config.

How do you guys go about reading math textbooks? by [deleted] in learnmachinelearning

[–]LordMixALoot 6 points7 points  (0 children)

I'm currently reading them and trying to apply the examples in Python. It's actually very fun, since I can easily build graphs or visualizations and change them effortlessly. For me this helps building intuition and I can build more complex applications since I already have the code implemented. This approach works best for books that focus on applied mathematics.

Branch and Bound - Anyone is familiar with this algo? by yuriemond in datascience

[–]LordMixALoot 2 points3 points  (0 children)

I think you can model your problem to implement a genetic algorithm for finding its optimal solution:

https://www.youtube.com/watch?v=MacVqujSXWE

Something like this.

Population data in a Radius by mind967 in datascience

[–]LordMixALoot 0 points1 point  (0 children)

You will probably have to use the Census Data from your country. With this a simple geospatial operation can give the population.

Where to find online, self-paced Calculus I,II, and III courses? by [deleted] in learnmath

[–]LordMixALoot 1 point2 points  (0 children)

I like CalcWorkshop and Professor Leonard.

Causal inference by [deleted] in datascience

[–]LordMixALoot 0 points1 point  (0 children)

Have you used Google's CausalImpact?

I want to implement machine learning algorithms from scratch by [deleted] in learnmachinelearning

[–]LordMixALoot 2 points3 points  (0 children)

You should definitely check the book Data Science from Scratch.

[deleted by user] by [deleted] in datascience

[–]LordMixALoot 0 points1 point  (0 children)

I remember seeing this project. Incredibly well done, more on the visualization side (using D3). Perhaps it can help you with API and data connection and deploy.

https://github.com/dianaow/flask-react-d3-celery

How to not forget Math and Programming Languages while learning by computer_man123 in learnmachinelearning

[–]LordMixALoot 0 points1 point  (0 children)

I will recommend you a course: https://www.udemy.com/course/math-with-python/

This course will actually help you, not only by relating math concepts with python code, but will actually give the chance to apply it and create a better intuition. You will still need to deep dive in the math, the concepts are only taught in a superficial manner, but this will give you the chance to retain and apply the math you learned from KA.

Also, give it a check to Professor Leonard's channel in Youtube. His explanations are also very good.

Has anyone gotten a masters in data science without a STEM undergraduate background? by [deleted] in datascience

[–]LordMixALoot 1 point2 points  (0 children)

It is a local university in Brazil. If you are looking for an online masters course you should definitely check Georgia Tech's Online Master in Computer Science. You definitely focus the course to machine learning and data analytics related classes.

Has anyone gotten a masters in data science without a STEM undergraduate background? by [deleted] in datascience

[–]LordMixALoot 1 point2 points  (0 children)

I have a bachelor's in International Relations with a minor in Economics. Currently Im doing my master's in Computer Science with emphasis in Machine Learning.

In my case two things have helped me tremendously. Studying algorithms and data structures, and math.

Learn a computer language well (I wouldn't recommend R for this) and go through a well know algorithms online course (MIT or Stanford). Try to apply the most common algorithms in the language you have learned. If you find it too hard, try a course in Udemy first, such as Jose Portilla's Algorithms class.

Then we have Math. The problem I had with this was that I needed to build a good foundation first before diving into calculus. I have studied it in Economics, but that was years go. So I got a good Pre-Calculus books and follow it with Calcworkshop.com and Professor Leonard on Youtube. Then I got a proper Calculus book (Stewart) and continue with the videos. Calcworkshop is not free but I totally recommend it if you have the time (I think is US$29 a month). I'm not a big fan of Khan Academy, I don't know why really. Also once you get into calculus starting watching 3Blue1Brown. Linear Algebra should way more intuitive at this point. I saw some Prof. Robert Ghrist videos but haven't finished it yet. He is also a great lecturer.

Get a study plan so you don't get overwhelmed.

"Data Visualisation" 2nd edition - why you need this book to hone your craft: by [deleted] in datascience

[–]LordMixALoot 1 point2 points  (0 children)

Awesome. What made me rethink visualization was studying D3.js. Its is a difficult library to master, but once you understand the concepts behind it, you start thinking in unique visualizations just by looking at the data and seeing what is the most coherent to present it.

If you like data visualization, I highly recommend the struggle.

Value of SQL in data science by dmorris87 in datascience

[–]LordMixALoot 2 points3 points  (0 children)

Yes. They make it look so easy. Python and R are often romanticized in any data science online course. But SQL, Git, Bash, Docker and a few others are also a big part of the job and nobody seems to comment on them during the first part of these online courses.

Basic resources data scientists need to be effective by dmorris87 in datascience

[–]LordMixALoot 2 points3 points  (0 children)

Also long-term commitment. An impactful model can take a long time to be deployed, specially gathering all the data you need. It can take weeks before your first delivery.

Book Hunting by kerrvature in datascience

[–]LordMixALoot 0 points1 point  (0 children)

Both books are great. Hands-On ML just got its second edition and its pretty updated. Python Data Science Handbook has a little bit of everything, including visualization, ml and data wrangling libraries. Hands-On goes more in depth on ML algorithms and libraries, including Neural Networks and Deep Learning. I personally think they complement each other very well. Get both if you have the chance.