Closed cbenoist314 closed 2 months ago
Hello @cbenoist314
Thank you for your feedback.
We will work on improving the docs available at https://autoprognosis.readthedocs.io/en/latest/generated/autoprognosis.studies.risk_estimation.html
When the study returns a None
value, it means it cannot find a model above a certain threshold.
By default, a RiskEstimationStudy tests the following algorithms
[
"survival_xgboost",
"loglogistic_aft",
"deephit",
"cox_ph",
"weibull_aft",
"lognormal_aft",
"coxnet",
]
Some of them require GPUs. You can try to reduce the search space on your end by using
study = RiskEstimationStudy(
study_name=study_name,
dataset=df,
target="event",
time_to_event="duration",
time_horizons=eval_time_horizons,
risk_estimators=["cox_ph", "weibull_aft", "survival_xgboost"],
score_threshold=0.4,
)
We will work on improving the docs to make these parameters more clear.
Please let me know if this version is faster and returns a model. Thanks!
Hello, Thanks to provide us this package. I have difficulties for the example Basic Survival Analysis:
It give a error hence I have replace by this part :
by this part:
I have a computation of several hours with many warnings and I have finally the error message:
Do you have an explanation or a solution ?
Thank you in advance.