Set LMTP Estimation Parameters
lmtp_control(
.bound = 1e+05,
.trim = 0.999,
.learners_outcome_folds = 10,
.learners_trt_folds = 10,
.return_full_fits = FALSE,
.discrete = TRUE,
.info = FALSE
)
A list of parameters controlling the estimation procedure.
[numeric(1)
]
Determines that maximum and minimum values (scaled) predictions
will be bounded by. The default is 1e-5, bounding predictions by 1e-5 and 0.9999.
[numeric(1)
]
Determines the amount the density ratios should be trimmed.
The default is 0.999, trimming the density ratios greater than the 0.999 percentile
to the 0.999 percentile. A value of 1 indicates no trimming.
[integer(1)
]
The number of cross-validation folds for learners_outcome
.
[integer(1)
]
The number of cross-validation folds for learners_trt
.
[logical(1)
]
Return full 'mlr3superlearner' fits? Default is FALSE
, return only 'mlr3superlearner' weights.
[logical(1)
]
Use discrete or ensemble super learner?
[logical(1)
]
Print super learner fitting info to the console?