RSSAmplifier

Blog

Posts | Sebastian Pölsterl

Posts

k-d-w.orgRSS feed ↗10 posts

Latest posts

scikit-survival 0.28.0 released

I am pleased to announce the release of scikit-survival 0.28.0 . A highlight of this release is the support for Polars DataFrames alongside pandas DataFrames via the Narwhals dataframe abstraction layer. In addition, this release adds support for scikit-learn 1.9 . Support for Polars Polars is a data frame library similar to pandas , but with its core written in Rust instead of Python, which often…

scikit-survival 0.26.0 released

I am pleased to announce that scikit-survival 0.26.0 has been released. This is a maintainance release that adds support for Python 3.14 and includes updates to make scikit-survival compatible with new versions of pandas and osqp. It adds support for the pandas string dtype , and copy-on-write , which is going to become the default with pandas 3. In addition, sksurv.preprocessing.OneHotEncoder now…

scikit-survival 0.25.0 with improved documentation released

I am pleased to announce that scikit-survival 0.25.0 has been released. This release adds support for scikit-learn 1.7, in addition to version 1.6. However, the most significant changes in this release affect the documentation. The API documentation has been completely overhauled to improve clarity and consistency. I hope this marks a significant improvement for users new to scikit-survival. One…

scikit-survival 0.24.0 released

It’s my pleasure to announce the release of scikit-survival 0.24.0. A highlight of this release the addition of cumulative_incidence_competing_risks() which implements a non-parameteric estimator of the cumulative incidence function in the presence of competing risks. In addition, the release adds support for scikit-learn 1.6, including the support for missing values for ExtraSurvivalTrees .…

scikit-survival 0.23.0 released

I am pleased to announce the release of scikit-survival 0.23.0. This release adds support for scikit-learn 1.4 and 1.5, which includes missing value support for RandomSurvivalForest . For more details on missing values support, see the section in the release announcement for 0.23.0 . Moreover, this release fixes critical bugs. When fitting SurvivalTree , the sample_weight is now correctly…

scikit-survival 0.22.0 released

I am pleased to announce the release of scikit-survival 0.22.0. The highlights for this release include Compatibility with scikit-learn 1.3. Missing value support for SurvivalTree . A reduced memory mode for RandomSurvivalForest , ExtraSurvivalTrees , and SurvivalTree . Support for predict_cumulative_hazard_function() and predict_survival_function() in Stacking . Missing Values Support in…

scikit-survival 0.21.0 released

Today marks the release of scikit-survival 0.21.0. This release features some exciting new features and significant performance improvements: Pointwise confidence intervals for the Kaplan-Meier estimator. Early stopping in GradientBoostingSurvivalAnalysis. Improved performance of fitting SurvivalTree and RandomSurvivalForest. Reduced memory footprint of concordance_index_censored. Pointwise…

scikit-survival 0.18.0 released

I’m pleased to announce the release of scikit-survival 0.18.0, which adds support for scikit-learn 1.1. In addition, this release adds the return_array argument to all models providing predict_survival_function and predict_cumulative_hazard_function . That means you can now choose, whether you want to have the survival (cumulative hazard function) automatically evaluated at the unique event…

Using VS Code and Podman to Develop SYCL Applications With DPC++'s CUDA Backend

I recently wanted to create a development container for VS Code to develop applications using SYCL based on the CUDA backend of the oneAPI DPC++ (Data Parallel C++) compiler. As I’m running Fedora, it seemed natural to use Podman’s rootless containers instead of Docker for this. This turned out to be more challenging than expected, so I’m going to summarize my setup in this post.…

scikit-survival 0.17.2 released

I’m pleased to announce the release of scikit-survival 0.17.2. This release fixes several small issues with packaging scikit-survival and the documentation . For a full list of changes in scikit-survival 0.17.2, please see the release notes . Most notably, binary wheels are now available for Linux, Windows, and macOS (Intel). This has been possible thanks to the cibuildwheel build tool,…