Treatment Effect Estimation

Routing Summary

This folder covers metalearner algorithms for estimating heterogeneous treatment effects (CATE) using machine learning base learners. Based on Künzel, Sekhon, Bickel & Yu (PNAS 2019). Contains 6 notes.

Concept Map

ConceptNoteTypeDepends OnKey Result
Metalearner frameworkMetalearners for CATEdefinitionCausal Estimands, , as wrappers around base ML
S-learnerS-LearnerconceptMetalearners for CATESingle model; treatment may be regularized to zero
T-learnerT-Learner and Minimax RatetheoremMetalearners for CATERate: ; optimal when balanced
X-learnerX-LearnertheoremT-Learner and Minimax RateRate: ; optimal for unbalanced groups
Empirical validationMetalearner Simulation ResultsexampleX-LearnerX-RF best on voter turnout (38K treated, 191K control)

Concept Dependency Chain

Potential Outcomes Framework + Causal Estimands (existing)
  └─► Metalearners for CATE (framework)
        ├── S-Learner (single model; simple but regularization risk)
        ├── T-Learner (separate models; limited by small group)
        │     └─► Theorem 1: minimax rate = min(m,n)^{-a_0}
        └── X-Learner (cross-imputation; exploits large group)
              └─► Theorem 2: rate = m^{-a_τ} + n^{-a_0} (adapts to CATE smoothness)
                    └─► Metalearner Simulation Results (voter turnout, transphobia)

Notes

  • Künzel 2019 - Overview — CONTAINS: paper overview, PNAS 2019; metalearner concept, key results summary
  • Metalearners for CATE — CONTAINS: potential outcomes notation; EMSE definition; families ; three metalearner comparison table
  • S-Learner — CONTAINS: definition ; regularization failure mode; when S-learner works
  • T-Learner and Minimax Rate — CONTAINS: definition of two separate models; Theorem 1 (minimax rate ); unbalanced failure mode
  • X-Learner — CONTAINS: full 3-step algorithm; imputed ITEs , ; propensity score weighting; Theorem 2 (adaptive rate)
  • Metalearner Simulation Results — CONTAINS: simulation study; voter turnout application (ATE = 8.1%, unbalanced); transphobia canvassing (ATE = 0.22)

Sources