In part 04 of the tutorial, in section 'The tuning wrapper' there is a predict statement applied to the tuned model/machine:
predict(tuned_mach, rows = 1:3)
To me it is not quite clear why the parameter 1:3 is given to rows. I would have expected that XHorse (or a subset of it) would be used.
In part 04 of the tutorial, in section 'The tuning wrapper' there is a
predictstatement applied to the tuned model/machine:predict(tuned_mach, rows = 1:3)To me it is not quite clear why the parameter
1:3is given torows. I would have expected thatXHorse(or a subset of it) would be used.