You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added `fit_args` to `estimate_effect()` that can be used with `fit_fast()` with the default variable weight algorithm (`sklearn`'s [MTLassoCV](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.MultiTaskLassoCV.html)). Common usages would include increasing `max_iter` (if you want to improve convergence) or `n_jobs` (if you want to run in parallel).
11
+
- Separated CV folds from Cross-fitting folds in `estimate_effects()`. `cv_folds` controls the amount of additional estimation done on the control units (this used to be controled by `max_n_pl`, but that parameter now only governs the amount of post-estimation processing that is done). This will do `cv_folds` extra estimations per treatment time period, though if `=1` then no extra work will be done (but control residuals might be biased toward 0).
10
12
- Added additional option `Y_col_block_size` to `MTLassoCV_MatchSpace_factory` to estimate `V` on block-averages of `Y` (e.g. taking a 150 cols down to 5 by doing averages over 30 cols at a time).
11
13
- Added `se_factor` to `MTLassoCV_MatchSpace_factory` to use a different penalty than the MSE min.
12
14
- For large data, approximate the outcomes using a normal distribution (`DescrSet`), and allow for calculating estimates.
0 commit comments