Closed fkiraly closed 5 months ago
Should I start working on this issue?
If you find it interesting, of course!
Given that you've interfaced ngboost
first time round, it should be less work for you than anyone.
Perhaps the most useful examples of recently interfaced survival models:
https://github.com/sktime/skpro/pull/247 https://github.com/sktime/skpro/pull/237
The main additional challenges are:
None
, and taking care of "which way round" (is 1 censored or uncensored)ngboost
as it uses parametric distributions primarily
The PR https://github.com/sktime/skpro/pull/215 has added
ngboost
as anskpro
regressor.The package can also be invoked for survival prediction, i.e., for using censoring information
C
as in theskpro
survival models. We should also add a version of thengboost
algorithm for survival prediction, hence.To avoid user confusion, it might be better to add this as a separate estimator in the
survival
module, although the two estimators may end up sharing a lot of similarities and hence, possibly, an inheritance tree.