class monad.constants.SplitPointInclusion
monad.constants.SplitPointInclusionRepresents the strategy to use when splitting data and some events are exactly at the split point timestamp.
from monad.constants import SplitPointInclusion
SplitPointInclusion.HISTORY| Enum Members |
|---|
HISTORY
Events at the split point are put into the history.
FUTURE
Events at the split point are put into the future.
ONE_FUTURE
Events at the split point except for a random one are put into the past, and the odd one into the future.
ONE_FUTURE_ALL_VARIANTS
For every event at the split point make a split where that event belongs to the future and the rest to history. This is the only strategy that may yield more than one data split per split point. If there are no events at the split point, still generates a single data split.
