How to use this list

Items marked [REQUIRED] must be completed by the listed week. Items marked [RECOMMENDED] will deepen your understanding but are not required. Items marked [OPTIONAL] are for students who want to go further or whose project aligns with that area. Use Keshav's 3-pass method: first pass = abstract + intro + conclusion; second pass = full reading; third pass = you could present it.

Videos

[REQUIRED] Week 1
3Blue1Brown — Neural Networks Series (YouTube · 4 videos · ~20 min each)
Best visual explanation of how neural networks learn. Covers gradient descent, backprop, and why depth helps. Watch all 4 before Wednesday of Week 1.
[RECOMMENDED] Week 1
Andrew Ng — AI For Everyone (Coursera · ~6 hours · free to audit)
Non-technical overview of AI in organizations. Excellent for understanding what AI can and cannot do. Good if you're not from a CS background.
[RECOMMENDED] Week 2
The most direct pandas tutorial for this project. Covers loading CSVs, filtering, groupby, and basic analysis — exactly what you need for your experiments.
[RECOMMENDED] Any week
Andrej Karpathy — "The State of GPT" (Microsoft Build 2023 · ~45 min)
How GPT-style models are trained: pre-training, RLHF, instruction fine-tuning. Very accessible. Useful for Week 3 context on prompt engineering.
[OPTIONAL]
You will genuinely understand transformers after watching this. Builds a character-level GPT from scratch in ~200 lines of PyTorch. Strongly recommended if your project involves model behavior.

Programming and Tooling

[REQUIRED] Complete before June 22
Python Crash Course — Eric Matthes (Chapters 1–6)
Variables, lists, dicts, functions, loops, files. Everything you need. Skip the pygame chapters. Available at most libraries and free as a PDF online.
[RECOMMENDED] Week 1
CS50P — Harvard Python Course (edX · free to audit · Weeks 0–4)
High production quality. Problem sets are excellent practice. Do Weeks 0–4 if new to Python.

NLP and Transformers

[REQUIRED] Week 2
The foundational transformer paper. Read: abstract, Section 1 (intro), Figure 1 (architecture diagram). Every modern LLM descends from this architecture.
[RECOMMENDED] Week 2
First model to show pre-training then fine-tuning works dramatically better than task-specific training. Read: abstract, intro, Section 2 (model architecture).
[REQUIRED] Week 3
Introduced few-shot prompting as a concept. Read: abstract, Section 1 (intro), Section 2 (few-shot learning definition). Conceptual foundation for all prompt engineering.
[REQUIRED] Week 3
Short paper showing "think step by step" dramatically improves reasoning accuracy. Read the introduction and Figure 1. Directly applicable to your prompting experiments.
[REQUIRED] Week 4
The original RAG paper. Read: abstract, intro, Section 2 (RAG model definition). Sections 3–5 if you're doing the RAG or cross-regulation project.

Research Methods

[REQUIRED] Week 5
Keshav — "How to Read a Paper" (2007, ACM SIGCOMM · 3 pages)
Apply the 3-pass method to every paper on this list. Also apply it to your own write-up: would it survive someone's first-pass reading?
[REQUIRED] Week 3
Heilmeier Catechism (DARPA · 1 page)
8 questions every research proposal must answer: What are you trying to do? How is it done today? What is new? Who cares? Read before writing your Week 3 project proposal.

Regulations

[REQUIRED] Week 1–2
The official HHS summary of the HIPAA Privacy Rule. Read before Week 2. You don't need the full regulation — just the summary to understand the structure and key exceptions.
[REQUIRED] Week 2
Lists all ~15 permitted disclosure categories. Reference document — don't memorize it, but know where to look when a scenario triggers one of these categories.
[RECOMMENDED] Week 2
Article 6: the six lawful bases (consent, contract, legal obligation, vital interests, public task, legitimate interest). Article 9: health data, biometric data, genetic data — the categories that overlap most with HIPAA.
[RECOMMENDED] Week 2
CCPA — California Consumer Privacy Act (California Attorney General)
Consumer rights: right to know, right to delete, right to opt-out of sale. Read the summary page. Relevant for the cross-regulation project — "can I delete my records?" hits CCPA and GDPR simultaneously.
[OPTIONAL] Cross-regulation project
Financial institutions must protect customers' non-public personal information. Analogous to HIPAA but for banks and insurers. Relevant when a health insurer's billing data crosses financial and medical categories.
[OPTIONAL] Cross-regulation project
Requires parental consent before collecting data on children under 13. Overlaps with HIPAA and GDPR when the patient is a minor.

AI and Law

[RECOMMENDED] Any week
Accessible overview of how AI intersects with legal systems. ~30 pages but skimmable. Useful for writing your project motivation section.
[REQUIRED] Week 5
The benchmark paper for the dataset you will work with. 137 real HIPAA enforcement scenarios with expert-validated ground truth. Read: abstract, Section 2 (dataset construction), Section 4 (results). This is the paper closest to what you are doing.
[OPTIONAL] Publication preparation
Survey of NLP applications in legal tasks: judgment prediction, legal question answering, court summarization. Good for situating your project in the broader research field.