mlr-org / mlr3pipelines

Dataflow Programming for Machine Learning in R
https://mlr3pipelines.mlr-org.com/
GNU Lesser General Public License v3.0
137 stars 25 forks source link

ppl() exported hyperparameters are unnecessary #726

Open mb706 opened 1 year ago

mb706 commented 1 year ago

... since using ppl() already makes it possible to change them. Instead of doing ppl("bagging", frac = 0.5), one can already do ppl("bagging", subsample.frac = 0.5), because of the way dictionary quick-access works.