All Projects → robertmartin8 → udemyML

robertmartin8 / udemyML

Licence: MIT license
Templates, code and notes for Kirill Eremenko's Machine Learning course

Programming Languages

python
139335 projects - #7 most used programming language
r
7636 projects

Projects that are alternatives of or similar to udemyML

Angular Awesome List
Список ресурсов по Angular на русском
Stars: ✭ 224 (+300%)
Mutual labels:  udemy
understand-nodejs
Learn and Understand Node.js
Stars: ✭ 45 (-19.64%)
Mutual labels:  udemy
fresh-coupons
Buy paid Udemy courses for free/with discount without extra step! See all discounted courses right in Udemy and apply coupon code automatically or with a single click.
Stars: ✭ 24 (-57.14%)
Mutual labels:  udemy
Udemy Course Grabber
A script/software for automatically enrolling/joining 100% discounted Udemy courses for free. Get Paid Udemy courses for free with just a few clicks.
Stars: ✭ 230 (+310.71%)
Mutual labels:  udemy
udemy-downloader
A Udemy downloader that can download lectures, with DRM support.
Stars: ✭ 507 (+805.36%)
Mutual labels:  udemy
vuejs-egitimi
Vue.js ile Sıfırdan Uygulama Geliştirme Eğitimi uygulama ve proje dosyaları
Stars: ✭ 19 (-66.07%)
Mutual labels:  udemy
Udemycoursegrabber
Your will to enroll in Udemy course is here, but the money isn't? Search no more! This python program searches for your desired course in more than [insert big number here] websites, compares the last updated date, and gives you the download link of the latest one back, but you also have the choice to see the other ones as well!
Stars: ✭ 137 (+144.64%)
Mutual labels:  udemy
CourseDownloader
GUI app for downloading whole online courses with folder structure from one url
Stars: ✭ 20 (-64.29%)
Mutual labels:  udemy
rails contact list
Learn Ruby on Rails by creating an app from scratch
Stars: ✭ 60 (+7.14%)
Mutual labels:  udemy
Aprendiendo-React
Todo sobre el curso de Udemy, Aprendiendo React
Stars: ✭ 44 (-21.43%)
Mutual labels:  udemy
Curso Algebra Lineal
Curso de Álgebra Lineal
Stars: ✭ 234 (+317.86%)
Mutual labels:  udemy
udemypy
Free Udemy courses everyday!
Stars: ✭ 88 (+57.14%)
Mutual labels:  udemy
learn-swift-with-bob
Learn Swift 4 with Bob: Intermediate to Advanced Swift 4 Course
Stars: ✭ 22 (-60.71%)
Mutual labels:  udemy
Time tracker flutter course
Source code for every lesson in the "Flutter & Firebase: Build a Complete App for iOS & Android" course on Udemy
Stars: ✭ 222 (+296.43%)
Mutual labels:  udemy
ngDownloader
📹 🎥 Now Download videos from any website including YouTube, Facebook, Udemy etc without ads.
Stars: ✭ 47 (-16.07%)
Mutual labels:  udemy
Aws Csa Notes 2018
My AWS Certified Solutions Architect Associate Study Notes!
Stars: ✭ 167 (+198.21%)
Mutual labels:  udemy
typescript-for-javascript-developers
Udemyで公開中の「ハンズオンで学ぶ TypeScript - JavaScript エンジニアのための TypeScript徹底入門」の公式リポジトリです。
Stars: ✭ 18 (-67.86%)
Mutual labels:  udemy
Manual-Pratico-Deep-Learning
Repositório para o meu curso na Udemy
Stars: ✭ 49 (-12.5%)
Mutual labels:  udemy
jquery-course
Code from my Udemy course "The Complete jQuery Course: From Beginner to Advanced"
Stars: ✭ 127 (+126.79%)
Mutual labels:  udemy
awesome-full-stack-machine-courses
Curated list of publicly accessible machine learning engineering courses from CalTech, Columbia, Berkeley, MIT, and Stanford.
Stars: ✭ 283 (+405.36%)
Mutual labels:  udemy

This repository contains my code following Udemy's Machine Learning A-Z course, by Kirill Eremenko and Hadelin de Ponteves. I was not a complete beginner when I went through the course, so in many cases I have made significant improvements to Hadelin's code, for example by using libraries that make the code a lot more intuitive (e.g backwards elimination in R). I have also included many original plots (and the code to generate them).

This repository will be useful for any learners following the course, or for anyone who needs a quick overview regarding how to implement a certain algorithm in python. I have provided a number of useful templates in both python and R (see the templates folder). If you find this useful, don't forget to leave a

If you'd like some practical advice on how to get better at machine learning, I wrote a post on my website with a guide, so you can learn from my mistakes. I do recommend this Udemy ML course, among others.

Contents

Getting started

To best make use of this repository, click on the "Clone or download" button towards the top-right of the page. Then, click "Download Zip". Use your preferred software to unzip it, and you're ready to go.

Templates

In the Udemy course, Hadelin writes templates that make applying certain models very straightforward. I have made multiple improvements, and you should just be able to copy and paste segments into your project (though of course you should make every effort to understand before you copy paste).

In the templates folder, you will find:

  • regression templates (python and R)
  • classification templates (python and R)
  • a cross validation script to compare multiple models (python)
  • plot templates, which contain the code to generate a variety of interesting plots.

Notes

At one stage I was going to write notes for every topic on the Udemy course, but I stopped after a while because I realised that the course was more focused on application than theory. In the notes folder, there are notes on preprocessing and multiple regression (the latter of which is nicely typed in LaTeX).

Python vs R

Many people who want to know more about machine learning struggle to choose between python and R. I personally believe that python is a better choice, particularly because it is easy to integrate your machine learning model with a wide range of other systems (e.g a web app), and because of the unified machine learning interface provided by scikit-learn. Take a look in the templates to judge for yourself.

I have included a full discussion in this repository, python_vs_R.md, which includes comments on the ease/quality of the implementation of various algorithms in each language.

Thoughts on the course

The Udemy ML course is one of those courses that advertises its lack of mathematics as if it were a good thing. While there is no doubt that the course gives you the very practical ability to formulaically solve a data problem, if your dataset deviates from the standard, you may have trouble.

Basically, I would have liked to see some more theory, because often this gives you a much better idea of what the various parameters do, and how to improve your results. Hadelin is clearly an expert on the subject, and it would be great to tap into some of his real life experience.

Additionally, what I don't understand is where they draw the line between writing code from scratch and using the available libraries. The course makes massive use of the standard libraries most of the time (which I have no objection to), but then sometimes it neglects to use a built-in which would save many lines of code. For example, the backwards-elimination method that we implemented from scratch in R can be replaced by the built in step() function. Literally 6 characters.

While I am complaining quite a lot, this course sparked/renewed my interest in machine learning, and has given me the motivation to go and learn the theory, either from a textbook like Elements of Statistical Learning, or from a more rigorous course like Andrew Ng's Machine Learning on Coursera, which I had previously started, but had given up on.

In all fairness, the course never claims to go be a super detailed exploration – it is a great overall introduction (with heavy emphasis on practicality), and it can definitely form a springboard to an education in ML.

About

This project is available for use, modification etc as discussed under the MIT License.

For more content like this, check out reasonabledeviations.com.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].