Skip to content

Books, courses and web sites on technical topics like machine learning and software engineering.

License

Notifications You must be signed in to change notification settings

ericness/learning_resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

82 Commits
Β 
Β 
Β 
Β 

Repository files navigation

learning_resources

Books, courses and web sites on technical topics like machine learning and software engineering.

Legend

πŸ“˜ - Book

πŸ“Ί - Video Course

πŸ“ - Online Course or Exercises

πŸ”¨ - Tool

Math

  • General

    • πŸ“Ί 3Blue1Brown Wonderful channel of math explainer videos. The series on Calculus and Linear Algebra make some of the most confusing concepts make intuitive sense.
  • Game Theory - I got interested in this after listening to the NY Times article "How A.I. Conquered Poker" on Audm.

  • Linear Algebra

    • πŸ“˜ Linear Algebra Done Right by Sheldon Axler. Widely recommended text for learning linear algebra. Free online PDF is available from the publisher in addition to a print edition.
  • Tools

Statistics

  • Bayesian

    • πŸ“˜ Bayesian Modeling and Computation in Python This online and print book focuses on using Python to do Bayesian modeling. It's a welcome change from all of the Bayesian books in R, JAGS and other non-general purpose languages. The other Bayesian book in Python,
    • πŸ“˜ Bayesian Methods for Hackers didn't impress me so it's nice to have an alternative.
  • Causal Inference

    • πŸ“˜ Causal Inference: The Mixtape by Scott Cunningham This online and print book is an intuitive and highly-readable introduction to causal inference. It provides examples in R and Stata.
    • πŸ“˜ Causal Inference: What If by Miguel Hernan and Jamie Robins. Book on causal inference by two professors at the Harvard School of Public Health. Brings together information that was previously scattered across many journals and disciplines into a single resource.
    • πŸ“˜ The Effect by Nick Huntington-Klein. The Effect is a book intended to introduce students (and non-students) to the concepts of research design and causality in the context of observational data. The book is written in an intuitive and approachable way and doesn’t overload on technical detail. I heard about this book on the Practical AI podcast.

Artificial Intelligence

  • Models
    • πŸ“˜ State of Open Source AI Book Covers all the most important categories in the Open Source AI space, from model evaluations to deployment.

Data Science

  • Introductory

  • Data Wrangling

    • πŸ”¨ Pandas Tutor Shows a visual representation of Pandas data manipulation code.
    • πŸ“ Tensor Puzzles Set of brain teasers to help learn programming for multidimensional arrays.
    • πŸ“˜ Pandas Workout by Reuven Lerner Work out your pandas skills against dozens of real-world challenges, each carefully designed to build an intuitive knowledge of essential pandas tasks.
  • Machine Learning

    • πŸ“˜ Machine Learning with Pytorch and Scikit Learn by Sebastian Raschka. I read the first edition of this book back in the day and it was a wonderful introduction to using Python for Data Science. Sebastian is on the fourth edition as of 2022 and I'm sure the material is better than ever.
    • πŸ“˜ Interpretable Machine Learning by Christoph Molnar. We used the SHAP section of this book to discuss interpretable methods at work. The rest of the book looks fantastic as well.
    • Machine Learning Design Interview book and online course by Khang Pham Bridges the gaps between Machine Learning β€œbook” knowledge and Machine Learning in production. It’s very easy to find resources about certain Machine Learning techniques but there is a lack of resources that explain how these techniques are used at big companies at scale.
    • Altdeep Online courses in causal machine learning with deep neural networks. Created by Robert Osazuma Ness, a researcher at Microsoft Research.
    • πŸ“˜ Causal AI A code-first introduction to building machine learning and deep learning models that implement causal reasoning.
  • Deep Learning

    • Grokking Deep Learning by Andrew W. Trask Plain English explanations of the fundamentals of how neural networks work.

    • fast.ai Courses for anyone to learn how to use neural networks. The courses can be used even if you haven't done anything with ML before.

    • Neural Networks explainer videos from 3Brown1Blue. These videos give an intuitive understanding of how neural networks work.

    • What Are Embeddings? A deep dive into embeddings by the inimitable Vicki Boykis.

  • Natural Language Processing

  • MLOps

  • Data Visualization

    • Storytelling with Data Great blog and books about data visualization. Cole Nussbaumer Knaflic has created some amazing resources for learning how to communicate data visually.

Data Systems

  • Data Modeling

Software Engineering

  • General

  • Software Architecture

  • Coding

    • πŸ“Ί Destroy All Software Screencasts by Gary Bernhardt explaining basic theoretical computer science concepts as well as implementing systems like compilers, web servers etc. Also includes Execute Program which is a learning environment using code examples to teach engineering skills.
    • πŸ“˜ Wizard Zines by Julia Evans Easy to digest zines on particular topics like DNS, debugging, etc. Julia makes highly technical material both easy to learn and dare I say fun?
    • πŸ“˜ Tidy First? by Kent Beck Recommends first cleaning up any legacy codebase before trying to modernize it. The book is highly recommended by Gergely Orosz.
  • Data Structures and Algorithms

    • See the Career - Interviewing section for more resources
    • πŸ“˜ A Common Sense Guide to Data Structures and Algorithms This is a great book to learn data structures and algorithms. The author has taught a live course on the subject many times and has distilled his learning down to this book. The explanations are clear and well illustrated. I highly recommend this book.
  • Legacy Systems

    • πŸ“˜ Kill It with Fire by Marianne Bellotti This book is recommended by the hosts of the Staff Eng podcast. It discusses how to smartly refactor legacy systems without giving in to the knee-jerk reaction to rebuild from scratch.
  • Python

    • πŸ“˜ Fluent Python by Luciano Ramalho This is one of the most highly rated books for how to take your Python from beginner to advanced. Teaches you how to write idiomatic Python. The second edition was released in 2022.
    • πŸ“˜ Powerful Python by Aaron Maxwell. This book is the perfect resource to take you from beginning to intermediate Python.
    • πŸ“Ί Talk Python Training Short video courses on a variety of Python related topics. The courses are taught by Michael Kennedy, the host of the Talk Python to me podcast, and his associates. Includes courses on mongodb, async programming, FastAPI and more.
    • πŸ“˜ Modeling and Simulation in Python by Allen Downey I heard about this book on an episode of Talk Python to Me. It covers simulating a variety of real-world processes like population growth, infectious diseases and so forth. It's by the same author as Think Bayes, Think Python, etc. There's also a free ebook version with Google Colab notebooks.
  • JavaScript

    • πŸ“ Scrimba Online courses for learning HTML, CSS, JavaScript and React. The courses provide an online development environment and are well constructed. I wrote a review of the HTML and CSS course.
    • πŸ“˜ Elequent JavaScript by Marijn Haverbeke. Highly recommended book for beginners to learn JavaScript. Book content is published online as well as print.
  • Networking

  • Tools

    • πŸ“Ί Vimcasts Videos, courses and books for improving your vim skills.

Infrastructure

  • DevOps
    • The Phoenix Project This is a book about the DevOps revolution written in narrative form. It is highly recommended by Josh Sheppard, my group manager at C.H. Robinson.
  • Cloud
    • A Cloud Guru Great online courses to study for cloud certifications. I used their course to get my AWS Cloud Practitioner certificate and had a good experience.

Product Management

  • πŸ“˜ Inspired by Marty Cagan. This is a great overview of best practices in product management from the founder of the Silicon Valley Product Group.

Technology

  • Commentary
    • Logic This magazine does deep dives into how society is affected by technology and vice versa. The articles contain insightful takes on a wide variety of technology topics.
    • Technology Review This online and print magazine from MIT follows the most important technology trends from many fields.

Writing and Documentation

Product Management

  • πŸ“ AI Product Management Bootcamp This program offers a comprehensive package comprising 25 hours of live content & 6 practical hands-on exercises encompassing both technical and strategic aspects.

Leadership

  • Technical Leadership

    • Staff Eng Podcast Interviews with Staff-plus engineers from a variety of big tech companies. Sadly, this podcast is no longer being produced.
  • Management

Career

  • Career Development

  • Job Search

    • The Standout Developer by Randall Kanna Learn how to ace the interview, get companies reaching out to you, build a standout resume and more.
  • Interviewing

    • Cracking the Coding Interview The original book that started the craze of technical interview resources. Has over 150 practice questions as well as advice for the interviewing process.
    • Blind 75 The classic list of LeetCode questions to focus on for coding interviews. Compiled by a Facebook engineer, the list went viral and is now referenced everywhere.
    • Tech Interview Handbook Free online book for how to prepare for tech interiews. One of the authors of this book is the creator of the famous Blind 75 list of LeetCode problems. Includes a refinement of the Blind 75 down to 50 questions.
    • Grokking the Coding Interview: Patterns for Coding Questions Online course created by FAANG engineers to help learn the typical patterns that appear in coding questions and how to solve them.
    • 14 Patterns to Ace Any Coding Interview Question Blog post written by one of the creators of "Grokking the Coding Interview". Gives a quick overview of the patterns that you'll learn in that course.
    • LeetCode Patterns Filterable list of LeetCode problems to practice different data structures and algorithms patterns.
    • NeetCode YouTube channel that explains the solutions to LeetCode problems. The explanations are clear and include both a theory and coding portion.
    • Interview Query Practice interview questions for data analysis, business intelligence and machine learning interviews. Based on questions from hundreds of tech companies.
    • Machine Learning Interviews Online book by the one-and-only Chip Huyen about how to prepare for ML Engineer interviews.

About

Books, courses and web sites on technical topics like machine learning and software engineering.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published