Skip to content

A comprehensive training camp for RAILers about the tools we use, machine learning, and more.

Notifications You must be signed in to change notification settings

rhodesai/bootcamp

Repository files navigation

RAIL Logo

Welcome, RAILer! The purpose of this guide is to get you up to speed as fast as possible in the tools that RAIL tends to use. The folders in the repo contain tutorials, mostly in Jupyter Notebook format (formerly known as iPython Notebook). If you're familiar with Jupyter Notebooks, then we recommend going through the interactive Notebooks for the lessons you need. If you're not familiar with them, then first install and get to know them.

We tend to use the standard Python data science & machine learning stack:

  1. Development: Jupyter Notebooks – an interactive, easy-to-share interface for creating "Notebooks" of code and results that anyone else can download and interact with. We recommend this over working on flat files.
  2. Data: Pandas – a Python library that makes loading, cleaning, exploring, and analyzing data really easy.
  3. Machine Learning: Scikit-Learn and others – Scikit-learn contains a lot of pre-made, well-tested machine learning algorithms. Most of the key ones can be called with the same methods: model.fit(X, y) and model.predict(X_test).
    • Other libraries we've used: TensorFlow (mostly for deep learning), Keras and PyTorch (deep learning), Edward (probabilistic modeling – advanced level.)

We've also included some extra reading on machine learning, to build your intuition about:

  1. What types of machine learning are there?
  2. When is each type used?

Contents

1. Jupyter Notebooks

Check out the Jupyter Notebooks Introduction folder to learn how to install and use Jupyter Notebooks.

2. Pandas Cookbook

Check out the Pandas Cookbook folder for Julia Evans' phenomenal sequence of 9 Pandas tutorial notebooks (taken from this repo). If you can do these, you'll be moving pretty fast. Highly recommended.

3. Machine Learning Cookbook

Beginner Conceptual Introductions

Notebooks

  1. 1. Concepts - Machine Learning - a set of notebooks to introduce you to applying a subset of ML concepts. I recommend looking at the PDF guides for conceptual learning and the notebooks for implementation. (Credit to John Wittenauer)
  2. 2. Example - Titanic Survival - an exercise where you'll predict the likelihood of survival for people onboard the Titanic using real data. This is a famous introductory example! (Credit to Andrew Conti)
  3. 3. Tools - Scikit-learn Tutorial - a set of notebooks to introduce you to various tools within scikit-learn. (Credit to Jake Vanderplas)

4. Extra Resources

  • The Stanford/Andrew Ng Machine Learning Course – a number of RAILers (strategists and engineers) have done this course during their RAIL project and found it both fascinating and useful.
  • Python/Numpy Tutorial – if you've never used NumPy before, or want to understand Python, I recommend this tutorial. (Built for the Stanford Convolutional Neural Network class.)
  • Python is the common programming language that we use. It is both functional and object-oriented. You will probably find that object-oriented is cleaner and easier to debug, while functional is faster to write.
  • NumPy, or Numeric Python, is the fundamental Python library for scientific computing. It allows you to do things like really easy manipulate data, analyze matrix-style data, and do linear algebra.
  • SciPy, or Scientific Python, is a collection of libraries (including NumPy) that contains sophisticated scientific computing functions. For example, scipy.stats contains some advanced statistical functions that NumPy doesn't have.

About

A comprehensive training camp for RAILers about the tools we use, machine learning, and more.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published