From 78a402dfadb1193a3e8b69426332a81f93c1c8cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20Kir=C3=A1ly?= Date: Sat, 6 Apr 2024 15:04:53 +0100 Subject: [PATCH] add julian-fong --- .all-contributorsrc | 9 +++++++++ skpro/survival/compose/_reduce_cond_unc.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index b26a6c5fb..cfc0f30b2 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -120,6 +120,15 @@ "doc", "test" ] + }, + { + "login": "julian-fong", + "name": "Julian Fong", + "avatar_url": "https://avatars.githubusercontent.com/u/44014224?v=4", + "profile": "https://github.com/julian-fongi", + "contributions": [ + "code" + ] } ] } diff --git a/skpro/survival/compose/_reduce_cond_unc.py b/skpro/survival/compose/_reduce_cond_unc.py index 66c754e25..b7027123e 100644 --- a/skpro/survival/compose/_reduce_cond_unc.py +++ b/skpro/survival/compose/_reduce_cond_unc.py @@ -13,7 +13,7 @@ class ConditionUncensored(BaseProbaRegressor): Simple baseline reduction strategy for predictive survival analysis. Fits a probabilistic regressor on X padded with censoring information C, - in predict applies the fitted regressor to X padded with 0 (non-censord). + in predict applies the fitted regressor to X padded with 0 (non-censored). In ``fit``, passes column concat of ``X`` and ``C`` to ``regressor.fit``.