Hide table of contents

Co-authored by Neel Nanda and Jess Smith

Crossposted on the suggestion of Vasco Grilo

Why does this exist?

People often get intimidated when trying to get into AI or AI Alignment research. People often think that the gulf between where they are and where they need to be is huge. This presents practical concerns for people trying to change fields: we all have limited time and energy. And for the most part, people wildly overestimate the actual core skills required.

This guide is our take on the essential skills required to understand, write code and ideally contribute useful research to mechanistic interpretability. We hope that it’s useful and unintimidating. :)

Core Skills:

  • Maths:
    • Linear Algebra: 3Blue1Brown or Linear Algebra Done Right
      • Core goals - to deeply & intuitively understand these concepts:
        • Basis
        • Change of basis
        • That a vector space is a geometric object that doesn’t necessarily have a canonical basis
        • That a matrix is a linear map between two vector spaces (or from a vector space to itself)
      • Bonus things that it’s useful to understand:
        • What’s singular value decomposition? Why is it useful?
        • What are orthogonal/orthonormal matrices, and how is changing to an orthonormal basis importantly different from just any change of basis?
        • What are eigenvalues and eigenvectors, and what do these tell you about a linear map?
    • Probability basics
      • Basics of distributions: expected value, standard deviation, normal distributions
      • Log likelihood
      • Maximum value estimators
      • Random variables
      • Central limit theorem
    • Calculus basics
      • Gradients
      • The chain rule
      • The intuition for what backprop is - in particular, grokking the idea that backprop is just the chain rule on multivariate functions
  • Coding:
    • Python Basics
      • The “how to learn coding” market is pretty saturated - there’s a lot of good stuff out there! And not really a clear best one.
      • Zac Hatfield-Dodds recommends Al Sweigart's Automate the Boring Stuff and then Beyond the Basic Stuff (both readable for free on inventwithpython.com, or purchasable in books); he's also written some books of exercises. If you prefer a more traditional textbook, Think Python 2e is excellent and also available freely online.
    • NumPy Basics
  • ML:
    • Rough grounding in ML.
    • PyTorch basics
      • Don’t go overboard here. You’ll pick up what you need over time - learning to google things when you get confused or stuck is most of the *real *skill in programming.
      • One goal: build linear regression that runs in Google Colab on a GPU.
      • The main way you will shoot yourself in the foot with PyTorch is when manipulating tensors, and especially multiplying them. I highly, highly recommend learning how to use einops (a library to nicely do any reasonable manipulation of a single tensor) and einsum (a built in torch function implementing Einstein Summation notation, to do arbitrary tensor multiplication)
        • If you try doing these things without einops and einsum you will hurt yourself. Do not recommend!
    • Transformers - probably the biggest way mechanistic interpretability differs from normal ML is that it’s really important to deeply understand the architectures of the models you use, all of the moving parts inside of them, and how they fit together. In this case, the main architecture that matters is a transformer! (This is useful in normal ML too, but you can often get away with treating the model as a black box)
      • Check out the illustrated transformer
        • Note that you can pretty much ignore the stuff on encoder vs decoder transformers - we mostly care about autoregressive decoder-only transformers like GPT-2, which means that each token can only see tokens before it, and they learn to predict the next token
      • Good (but hard) exercise: Code your own tiny GPT-2 and train it. If you can do this, I’d say that you basically fully understand the transformer architecture.
      • An alternate framing that may help give different intuitions is Nelson Elhage’s Transformers for Software Engineers (also useful to non software engineers!)
    • Bonus: Jacob Hilton’s Deep learning for Alignment syllabus - this is a lot more content than you strictly need, but is well put together and likely a good use of time to go through at least some of!

Beyond the above, if you have the prerequisites, a good way to get more into the field may be checking out my extremely opinionated list of my favourite mechanistic interpretability papers

Note that there are a lot more skills in the “nice-to-haves”, but I think that generally the best way to improve at something is by getting your hard dirty and engaging with the research ideas directly, rather than making sure you learn every nice-to-have skill first - if you have the above, I think you should just jump in and start learning about the topic! Especially for the coding related skills, your focus should not be on getting your head around concepts, it should be about doing, and actually writing code and playing around with the things - the challenge of making something that actually works, and dealing with all of the unexpected practical problems that arise is the best way of really getting this.

54

0
0

Reactions

0
0

More posts like this

Comments1
Sorted by Click to highlight new comments since: Today at 7:43 PM

Thank you for this post, very relevant to what I'm researching - Goal Misgeneralization problem

Curated and popular this week
Relevant opportunities