Code Monkey home page Code Monkey logo

Comments (1)

kbattocchi avatar kbattocchi commented on June 6, 2024 1

CausalForestDML computes a model which is linear in T, roughly

Y = \theta(X) T + \beta(X) + Y_0(X,W)

where theta and beta are forest-based models, and Y_0 is a nuisance function.

So the marginal CATE is just dY/dT = \theta(X). We don't need to compute a gradient because we're assuming linearity in T and the final model is fitting this directly.

For your second question, const_marginal_ate is the average marginal treatment effect over all of the Xs passed in, whereas const_marginal_effect is the per-X heterogeneous treatment effect, so the former is just the mean of the latter (but to be clear, CausalForestDML does not support X=None as a valid input to either method).

Because the treatment effect is assumed to be linear for all of our DML methods, they implement effect in terms of const_marginal_effect (not const_marginal_ate, because again that would average over the treatments instead of giving the heterogeneous effects): effect(X, T0, T1) is basically just const_marginal_effect(X) @ (T1-T0) where @ is matrix multiplication.

Again, because the treatment effect is always linear for these models, the marginal effect is the same for any value of T, and marginal_effect(T, X) == const_marginal_effect(X) and marginal_ate(T, X) == const_marginal_ate(X) for every T.

Hope that helps.

from econml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.