Skip to main content

Introduction to Machine Learning in Python

Python tutorials for introduction to machine learning

Introduction to Machine Learning in Python

This repository provides instructional material for machine learning in python. The material is used for two classes taught at NYU Tandon by Sundeep Rangan:
  • EE-UY / CS-UY 4563: Introduction to Machine Learning (Undergraduate)
  • EL-GY 6123: Introduction to Machine Learning (Graduate)
Anyone is free to use and copy this material (at their own risk!). But, please cite the material if you use the material in your own class.

Pre-requisites

  • All the software can be run on any laptop (Windows, MAC or UNIX). Instructions are also provided to run the code in Google Cloud Platform on a virtual machine (VM).
  • Both classes assume no python or ML experience. However, experience with some programming language (preferably object-oriented) is required.
  • To follow all the mathematical details and to complete the homework exercises, the class assumes undergraduate probability, linear algebra and multi-variable calculus.

Start the course

Go to the units sequence to being the machine learning course.

Feedback

Any feedback is welcome. If you find errors, have ideas for improvements, or want to voice any other thoughts, create an issueand we will try to get to it. Even better, fork the repository, make the changes yourself and create a pull request and we will try to merge it in. See the excellent instructions from the former TA Ish Jain.

Contributors

The course material has been developed by several faculty including:

Comments

Post a Comment

Popular posts from this blog

Machine Learning API tutorial

Fast Style Transfer in  TensorFlow Add styles from famous paintings to any photo in a fraction of a second!  You can even style videos!     It takes 100ms on a 2015 Titan X to style the MIT Stata Center (1024×680) like Udnie, by Francis Picabia. Our implementation is based off of a combination of Gatys'  A Neural Algorithm of Artistic Style , Johnson's  Perceptual Losses for Real-Time Style Transfer and Super-Resolution , and Ulyanov's  Instance Normalization . Running on FloydHub It is very easy to train, evaluate and serve fast style transfer on [Floydhub][ https://www.floydhub.com/ ]. Follow the instructions below: Visit  Floydhub  site to create an account if you do not have one. Clone this repository to your machine. Run  floyd init <project name>  inside the directory. Now you can: Train a new model Evaluate an existing model Serve a trained model at a public API. Video Stylization Here we t...

AutoML-Papers

Awesome-AutoML-Papers A curated list of automated machine learning papers, articles, tutorials, slides and projects. Introduction to AutoML Machine learning (ML) has achieved considerable successes in recent years and an ever-growing number of disciplines rely on it. However, this success crucially relies on human machine learning experts to perform the following tasks: Preprocess the data Select appropriate features Select an appropriate model family Optimize model hyperparameters Postprocess machine learning models Critically analyze the results obtained. As the complexity of these tasks is often beyond non-ML-experts, the rapid growth of machine learning applications has created a demand for off-the-shelf machine learning methods that can be used easily and without expert knowledge. We call the resulting research area that targets progressive automation of machine learning  AutoML . AutoML draws on many disciplines of machine learning, prominently including ...