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
However, if we train a dedicated CatBoost on a subset of data for a small AOI, we may benefit from subsetting based on the requested start_date and end_date (has to be one year) by the user. Can we adapt the method to accept an optional argument, e.g. end_date which - if given - dictates the subsetting of the timeseries?
We then need to be careful to be resilient to different years of the training data, and also drop samples that don't fall entirely within the requested time frame (adapted for the year of the sample).
The text was updated successfully, but these errors were encountered:
Currently we take
end_date
of training data and go back one year to subset training time series:presto-worldcereal/presto/inference.py
Lines 397 to 410 in e8d5bbc
However, if we train a dedicated CatBoost on a subset of data for a small AOI, we may benefit from subsetting based on the requested
start_date
andend_date
(has to be one year) by the user. Can we adapt the method to accept an optional argument, e.g.end_date
which - if given - dictates the subsetting of the timeseries?We then need to be careful to be resilient to different years of the training data, and also drop samples that don't fall entirely within the requested time frame (adapted for the year of the sample).
The text was updated successfully, but these errors were encountered: