BasisResearch / chirho

An experimental language for causal reasoning
https://basisresearch.github.io/chirho/getting_started.html
Apache License 2.0
164 stars 10 forks source link

Fix typo in slc.ipynb #545

Closed djinnome closed 2 months ago

djinnome commented 2 months ago

To implement this query in ChiRho we extend our LinearSLC model by applying two interventions, do(actions=dict(T=torch.zeros(treatment_shape)) and do(actions=dict(T=torch.zeros(treatment_shape)), and then sampling jointly from counterfactual worlds using the MultiWorldCounterfactual handler.

Should be:

To implement this query in ChiRho we extend our LinearSLC model by applying two interventions, do(actions=dict(T=torch.zeros(treatment_shape)) and do(actions=dict(T=torch.ones(treatment_shape)), and then sampling jointly from counterfactual worlds using the MultiWorldCounterfactual handler.