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
The example juxtaposes the performance of three regression models that use different configurations of DatetimeEncoder. These lines highlight that the one with spline feature pre-processing is better:
# As expected for linear models, introducing the periodic features improved
# the RMSE by a noticeable amount.
Please notice that spline periodic encoding actually yields significantly worse RMSE. Its performance on the first two splits is preposterous, as visualized below. The DataViz also shows RMSE on entire test set, as well as on its last 96 entries: the spline pipeline keeps under-performing.
Also, a couple of minor corrections should be done:
just "don't want to" is meant, and resolution is not explicitly set to "hour" in the preceding code example:
The example juxtaposes the performance of three regression models that use different configurations of
DatetimeEncoder
. These lines highlight that the one with spline feature pre-processing is better:skrub/examples/03_datetime_encoder.py
Lines 221 to 227 in 00a6d70
Please notice that spline periodic encoding actually yields significantly worse RMSE. Its performance on the first two splits is preposterous, as visualized below. The DataViz also shows RMSE on entire test set, as well as on its last 96 entries: the spline pipeline keeps under-performing.
Also, a couple of minor corrections should be done:
resolution
is not explicitly set to "hour" in the preceding code example:skrub/examples/03_datetime_encoder.py
Lines 89 to 92 in 00a6d70
The text was updated successfully, but these errors were encountered: