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
I wanted to predict short-term survival curves from a RSF on a large customer dataset and ran out of memory because the entire survival curves were predicted with their length equal to the training dataset.
It would be great if there would be the possibility to limit the prediction by passing an array with indices or something like that similar to what is implement in the lifelines package for predictions via passing the 'time' - parameter.
References and existing implementations
[(https://lifelines.readthedocs.io/en/latest/fitters/regression/CoxPHFitter.html#lifelines.fitters.coxph_fitter.SemiParametricPHFitter.predict_survival_function)]
The text was updated successfully, but these errors were encountered:
With "their length equal to the training dataset" I meant that the length of the returned arrays or StepFunctino are determined from the training times and this number was so large that x and y couldn't even be stored. Here, I would have appreciated the possibility in limiting the prediction to the next n number of periods or a list of predefined time periods.
I wanted to predict short-term survival curves from a RSF on a large customer dataset and ran out of memory because the entire survival curves were predicted with their length equal to the training dataset.
It would be great if there would be the possibility to limit the prediction by passing an array with indices or something like that similar to what is implement in the lifelines package for predictions via passing the 'time' - parameter.
References and existing implementations
[(https://lifelines.readthedocs.io/en/latest/fitters/regression/CoxPHFitter.html#lifelines.fitters.coxph_fitter.SemiParametricPHFitter.predict_survival_function)]
The text was updated successfully, but these errors were encountered: