Open wjakethompson opened 3 years ago
instead of using initial_split(), fit(), and predict(), consider using validation_set(). Then we can move directly to fit_resample() and collect_metrics().
initial_split()
fit()
predict()
validation_set()
fit_resample()
collect_metrics()
classification slides jump around a lot from model to model.
beginning of slides is focused on regression - should move to prediction
instead of using
initial_split()
,fit()
, andpredict()
, consider usingvalidation_set()
. Then we can move directly tofit_resample()
andcollect_metrics()
.