Code implementation of Generalized Random Forest (Athey et al., 2019.) with the application of smoothed estimating equations.
pip install numpy pandas matplotlib scipy joblib Cython# Cloning the GRF with a smoothed estimating equation
git clone --branch feature/quantile-see-forest --single-branch https://github.com/Rouxist/generalized-random-forest.git
# Cloning the GRF (fit with mean, predict quantiles)
git clone --branch feature/quantreg-forest --single-branch https://github.com/Rouxist/generalized-random-forest.git
# Cloning the GRF (fit and predict exact quantiles without approximation)
git clone --branch feature/quantile-forest --single-branch https://github.com/Rouxist/generalized-random-forest.gitpython3 setup.py build_ext --inplace# GRF with a smoothed estimating equation
python3 cython_test_qseegrf.py