Skip to content

Latest commit

 

History

History

Treatment Effect Estimation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Table of Contents

Reviews

Causal inference frameworks include the potential outcome framework (by Donald Rubin) and the structural causal model (by Judea Pearl). Treatment Effect Estimation is an important task in the potential outcome framework.

W:treatments, X:variables, Y:outcomes, C:Confounders

  • A Survey on Causal Inference (arXiv2020)
    • 5分
    • 关于potential outcome framework下的causal inference的综述。
    • 三个经典的assumption:
      • Assumption 1: unit之间独立(如在社交网络中是不成立的)以及the single version for each treatment。
      • Assumption 2: 在给定X时,W与Y独立。这表示当给定X时,W可以看成random给的。这个假设隐含着所有confounders都包含在给定的X之中,但在实际情况中显然可能存在一些confounders没有被观测到。
      • Assumption 3 Positivity表明在给定X时,任意的W都是可能的。
    • Two major challenges in treatment effect estimation and confounder bias are:
      • Missing counterfactuals outcome: 对照实验是代价高昂的,现实中往往只能观测到一个outcome,而其余的treatment下的outcome即counterfactual outcome.
      • Confounder bias: Confounders are the variables that affect both the treatment assignment and the outcome. Confounders导致了treatment group和control group之间的selection bias,相当于covariate shift问题。
    • Propensity score即e(x)=P(W=1|X=x),刻画了给定X=x对于treatment的偏好。实际上这里的X也可以写成C。实际应用中通常用lr去估计。

Model-agnostic Methods

与具体使用的模型无关,强调的是方案的框架与思路,又被称作meta-learner。

Model-specific Methods

与具体使用的模型相关的方法,包括基于NN的,基于树的方法等等。

NN-based

使用NN时,基于表示学习来缓解selection bias带来的对照组和实验组的分布偏移。

Tree-based

使用Tree时,通过改变节点分裂的方式缓解selection bias。