SurvivalEVAL


NameSurvivalEVAL JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://github.com/shi-ang/SurvivalEVAL
SummaryThe most comprehensive Python package for evaluating survival analysis models.
upload_time2024-09-27 02:09:18
maintainerNone
docs_urlNone
authorShi-ang Qi
requires_python>=3.8
licenseMIT
keywords survival analysis evaluation metrics survivaleval
VCS
bugtrack_url
requirements tqdm torch scipy scikit-learn matplotlib pandas numpy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">SurvivalEVAL</h1>

<p align="center">
  <a href="https://github.com/shi-ang/SurvivalEVAL/">
        <img alt="PyPI" src="https://github.com/shi-ang/SurvivalEVAL/blob/main/logo.png" width="300" height="300"></a>
</p>


-----------------

[//]: # ()
[//]: # ([![Python 3.8+]&#40;https://img.shields.io/badge/python-3.8+-blue.svg&#41;]&#40;https://www.python.org/downloads/release/python-380/&#41;)

[//]: # ([![License]&#40;https://img.shields.io/badge/license-MIT-yellow.svg&#41;]&#40;https://opensource.org/licenses/MIT&#41;)

[//]: # ([![Maintenance]&#40;https://img.shields.io/badge/Maintained%3F-yes-green.svg&#41;]&#40;https://github.com/shi-ang/SurvivalEVAL/issues&#41;)

[//]: # ([![HitCount]&#40;https://hits.dwyl.com/shi-ang/SurvivalEVAL.svg?style=flat&#41;]&#40;http://hits.dwyl.com/shi-ang/SurvivalEVAL&#41;)

[//]: # ()

<p align="center">
    <a href="https://pypi.org/project/SurvivalEVAL/">
        <img alt="PyPI" src="https://img.shields.io/pypi/v/SurvivalEVAL"></a>
    <a href="https://pypi.org/project/SurvivalEVAL/">
        <img alt="PyPI - Python Version" src="https://img.shields.io/badge/python-3.8+-blue.svg"></a>
    <a href="https://opensource.org/licenses/MIT">
        <img alt="License" src="https://img.shields.io/badge/license-MIT-yellow.svg"></a>
    <a href="https://github.com/shi-ang/SurvivalEVAL/issues">
        <img alt="Maintenance" src="https://img.shields.io/badge/Maintained%3F-yes-green.svg"></a>
    <a href="http://hits.dwyl.com/shi-ang/SurvivalEVAL">
        <img alt="HitCount" src="https://hits.dwyl.com/shi-ang/SurvivalEVAL.svg?style=flat"></a>
</p>


This python-based package contains the most completeness evaluation methods for Survival Algorithms (see [paper](https://ojs.aaai.org/index.php/AAAI-SS/article/view/27713)). 
These evaluation metrics can be divided into 3 categories:
- For point prediction (first row in the figure below)
    - [Concordance Index](#concordance-index)
    - [MAE](#mean-absolute-error) 
    - [MSE](#mean-squared-error)
- For survival distribution prediction (second row in the figure below)
    - [IBS](#integrated-brier-score-ibs)
    - [D-Calibration](#distribution-calibration-d-calibration)
- For single time probability prediction (third row in the figure below)
    - [AUROC](#area-under-the-receiver-operating-characteristic-auroc)
    - [BS](#brier-score-bs)
    - [1-Calibration](#one-time-calibration-1-calibration)

[//]: # (![Visualization of the evaluation metrics]&#40;all_metrics.png&#41;)

<p align="center">
    <a href="https://github.com/shi-ang/SurvivalEVAL/blob/main/all_metrics.png">
        <img alt="Visualization of the evaluation metrics" src="https://github.com/shi-ang/SurvivalEVAL/blob/main/all_metrics.png"></a>
</p>

## Concordance index
Concordance index identifies the “comparable” pairs of patients and calculates the percentage of correctly ranked pairs to assess a survival model’s performance. 
Given two predicted survival curves of a paired patients, it compares the predicted median/mean survival times and marks that pair as correct if the model's prediction about who died first matches with the reality. 

## Mean Absolute Error
One straightforward metric would be “MAE” –  the absolute difference between the actual and predicted survival times (e.g. median of a curve).
This requires using the “actual survival time”, which is trivial for uncensored instances, but problematic for censored individuals. 
This python package implemented MAE loss metrics using different ways of handling censored instances. Here we list three of them:
1. `Uncensored` simply discards all the censored individuals and compute the MAE for all the uncensored instances.
2. `Hinge` calculates the early prediction error. For a censored instance, if the predicted survival time is smaller than the censored time, then `MAE = censor_time - predict_time`. If the predicted survival time is equal or larger than the censored time, then `MAE = 0`. Note that the standard `Hinge` method requires the `Weighted` parameter to be set to `False`.
3. `Pseudo_obs` “de-censors” the censored patients, using pseudo-observation method (by estimating the contribution of a censored subject to the whole Kaplan-Meier distribution). Then it calculates the MAE between de-censoring time and the predicted survival time, just like the normal way. Note that the standard `Pseudo_obs` method requires the `Weighted` parameter to be set to `True`.


## Mean Squared Error and Root Mean Squared Error
Mean squared error (MSE) is another metric to measure the difference between the actual and predicted survival times.
Similar to MAE, mean squared error (MSE) also has multiple ways to handle censored instances, similar to MAE.
1. `Uncensored`
2. `Hinge`
3. `Pseudo_obs`

We also have root mean squared error (RMSE) for each of the different ways.

## Integrated Brier Score (IBS)
IBS measures the squared difference between the predicted survival curve with the Heaviside step function of the observed event.
IBS can be viewed as the integration of the (single-time) Brier score across all the time points. 
A smaller IBS value is preferred over the larger value. 
This python implementation uses IPCW weighting to handle the censored instances. Please refer to [Assessment and Comparison of Prognostic Classification Schemes for Survival Data](https://pubmed.ncbi.nlm.nih.gov/10474158/) for the detail of IPCW weighting.
Please also note that IBS is also similar to the [Continuous Ranked Probability Score (CRPS)](https://arxiv.org/abs/1806.08324), except (1) the IPCW weighting, and (2) squared error instead of absolute error.

## Distribution Calibration (D-calibration)
[Haider et al.](https://jmlr.org/papers/volume21/18-772/18-772.pdf) proposed distribution calibration (D-calibration) test for determining if a model that produces ISDs is meaningful. 
D-calibration splits the time-axis into a fixed number of intervals and compares the actual number of events with the predicted number of events within each interval. 
A well D-calibrated model is the one where the predicted number of events within each time interval is statistically similar to the observed number.
Models with p-value higher than 0.05 can be considered as well-calibrated model across the survival distribution.

D-calibration quantifies this comparison of predicted and actual events within each time interval. 
The details of D-calibration calculations and ways to incorporate censored instances into D-calibration computation appear in Appendix B and in [Effective Ways to Build and Evaluate Individual Survival Distributions](https://jmlr.org/papers/volume21/18-772/18-772.pdf).

## Area Under the Receiver Operating Characteristic (AUROC)
AUROC is a metric to measure the performance of a single time probability prediction. 
It is the area under the receiver operating characteristic curve, which is the plot of the true positive rate against the false positive rate at various threshold settings.
In the survival analysis, the single time probability prediction is the prediction of the survival probability at a specific time point.
And the true label is whether the patient died at that time point.
AUROC excludes the censored instances whose censoring time is earlier than the target time point.

## Brier Score (BS)
The Brier score, at a specific time-point, is computed as the mean squared error between the observed event (binary indicator variable) and the predicted event probability at that time-point. 
It is meaningful in the sense that the square root of the Brier score is the distance between the observed and predicted event on the probability scale. 


## One-time Calibration (1-calibration)
Calibration measures the confidence of the model. 
The detailed explanation for the algorithm implementation can be found in [Effective Ways to Build and Evaluate Individual Survival Distributions](https://jmlr.org/papers/volume21/18-772/18-772.pdf) and [A tutorial on calibration measurements and calibration models for clinical prediction models](https://academic.oup.com/jamia/article/27/4/621/5762806).
The output is a p-value of Hosmer-Lemeshow goodness-of-fit test at a target time. 
Models with p-value higher than 0.05 can be considered as well-calibrated model at that time.


## Installation
You can install the package via pip.
```bash
pip install SurvivalEVAL
```

Or if you want to do some modification by yourself. 
Clone the repo, cd into it and install it in editable mode (`-e` option).
That way, these are no more need to re-install the package after modification.
```bash
git clone https://github.com/shi-ang/SurvivalEVAL.git
cd SurvivalEVAL
pip install -r requirements.txt
pip install -e . 
```

## Quickstart Example

Install a survival analysis package, such as `lifelines`, and load the data.
Then, you can use the following code to evaluate the model.

```python
from lifelines import CoxPHFitter
from lifelines.datasets import load_rossi

from SurvivalEVAL.Evaluator import LifelinesEvaluator

# Load the data
rossi = load_rossi()
rossi = rossi.sample(frac=1.0)

# Split train/test set
train = rossi.iloc[:300, :]
test = rossi.iloc[300:, :]
train_event_times = train.week.values
train_event_indicators = train.arrest.values
test_event_times = test.week.values
test_event_indicators = test.arrest.values

# Fit the model
cph = CoxPHFitter()
cph.fit(train, duration_col='week', event_col='arrest')

survival_curves = cph.predict_survival_function(test)

# Make the evaluation
eval = LifelinesEvaluator(survival_curves, test_event_times, test_event_indicators,
                          train_event_times, train_event_indicators)

cindex, _, _ = eval.concordance()

mae_score = eval.mae(method="Pseudo_obs")

mse_score = eval.mse(method="Hinge")

# The largest event time is 52. So we use 53 time points (0, 1, ..., 52) to calculate the IBS
ibs = eval.integrated_brier_score(num_points=53, draw_figure=True)

d_cal = eval.d_calibration()

# The target time for the single time probability prediction is set to 25
auc_score = eval.auc(target_time=25)
bs_score = eval.brier_score(target_time=25)
one_cal = eval.one_calibration(target_time=25)

```
See the [Examples](examples) for more usage examples.


## Expected Deliveries in the Future
1. Time-dependent c-index (by Antolini)
2. IPCW AUC

Please create an issue if you want me to implement any other evaluation metrics.

## Citing this work

We recommend you use the following to cite `SurvivalEVAL` in your publications:

```
@article{qi2024survivaleval,
year = {2024},
month = {01},
pages = {453-457},
title = {{SurvivalEVAL}: A Comprehensive Open-Source Python Package for Evaluating Individual Survival Distributions},
author={Qi, Shi-ang and Sun, Weijie and Greiner, Russell},
volume = {2},
journal = {Proceedings of the AAAI Symposium Series},
doi = {10.1609/aaaiss.v2i1.27713}
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shi-ang/SurvivalEVAL",
    "name": "SurvivalEVAL",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "survival analysis, evaluation, metrics, survivaleval",
    "author": "Shi-ang Qi",
    "author_email": "shiang@ualberta.ca",
    "download_url": "https://files.pythonhosted.org/packages/8b/71/9b6962446af67830e98c45cf3d04f61844c0d767468c5738bbc4d213e342/SurvivalEVAL-0.3.0.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">SurvivalEVAL</h1>\n\n<p align=\"center\">\n  <a href=\"https://github.com/shi-ang/SurvivalEVAL/\">\n        <img alt=\"PyPI\" src=\"https://github.com/shi-ang/SurvivalEVAL/blob/main/logo.png\" width=\"300\" height=\"300\"></a>\n</p>\n\n\n-----------------\n\n[//]: # ()\n[//]: # ([![Python 3.8+]&#40;https://img.shields.io/badge/python-3.8+-blue.svg&#41;]&#40;https://www.python.org/downloads/release/python-380/&#41;)\n\n[//]: # ([![License]&#40;https://img.shields.io/badge/license-MIT-yellow.svg&#41;]&#40;https://opensource.org/licenses/MIT&#41;)\n\n[//]: # ([![Maintenance]&#40;https://img.shields.io/badge/Maintained%3F-yes-green.svg&#41;]&#40;https://github.com/shi-ang/SurvivalEVAL/issues&#41;)\n\n[//]: # ([![HitCount]&#40;https://hits.dwyl.com/shi-ang/SurvivalEVAL.svg?style=flat&#41;]&#40;http://hits.dwyl.com/shi-ang/SurvivalEVAL&#41;)\n\n[//]: # ()\n\n<p align=\"center\">\n    <a href=\"https://pypi.org/project/SurvivalEVAL/\">\n        <img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/SurvivalEVAL\"></a>\n    <a href=\"https://pypi.org/project/SurvivalEVAL/\">\n        <img alt=\"PyPI - Python Version\" src=\"https://img.shields.io/badge/python-3.8+-blue.svg\"></a>\n    <a href=\"https://opensource.org/licenses/MIT\">\n        <img alt=\"License\" src=\"https://img.shields.io/badge/license-MIT-yellow.svg\"></a>\n    <a href=\"https://github.com/shi-ang/SurvivalEVAL/issues\">\n        <img alt=\"Maintenance\" src=\"https://img.shields.io/badge/Maintained%3F-yes-green.svg\"></a>\n    <a href=\"http://hits.dwyl.com/shi-ang/SurvivalEVAL\">\n        <img alt=\"HitCount\" src=\"https://hits.dwyl.com/shi-ang/SurvivalEVAL.svg?style=flat\"></a>\n</p>\n\n\nThis python-based package contains the most completeness evaluation methods for Survival Algorithms (see [paper](https://ojs.aaai.org/index.php/AAAI-SS/article/view/27713)). \nThese evaluation metrics can be divided into 3 categories:\n- For point prediction (first row in the figure below)\n    - [Concordance Index](#concordance-index)\n    - [MAE](#mean-absolute-error) \n    - [MSE](#mean-squared-error)\n- For survival distribution prediction (second row in the figure below)\n    - [IBS](#integrated-brier-score-ibs)\n    - [D-Calibration](#distribution-calibration-d-calibration)\n- For single time probability prediction (third row in the figure below)\n    - [AUROC](#area-under-the-receiver-operating-characteristic-auroc)\n    - [BS](#brier-score-bs)\n    - [1-Calibration](#one-time-calibration-1-calibration)\n\n[//]: # (![Visualization of the evaluation metrics]&#40;all_metrics.png&#41;)\n\n<p align=\"center\">\n    <a href=\"https://github.com/shi-ang/SurvivalEVAL/blob/main/all_metrics.png\">\n        <img alt=\"Visualization of the evaluation metrics\" src=\"https://github.com/shi-ang/SurvivalEVAL/blob/main/all_metrics.png\"></a>\n</p>\n\n## Concordance index\nConcordance index identifies the \u201ccomparable\u201d pairs of patients and calculates the percentage of correctly ranked pairs to assess a survival model\u2019s performance. \nGiven two predicted survival curves of a paired patients, it compares the predicted median/mean survival times and marks that pair as correct if the model's prediction about who died first matches with the reality. \n\n## Mean Absolute Error\nOne straightforward metric would be \u201cMAE\u201d \u2013  the absolute difference between the actual and predicted survival times (e.g. median of a curve).\nThis requires using the \u201cactual survival time\u201d, which is trivial for uncensored instances, but problematic for censored individuals. \nThis python package implemented MAE loss metrics using different ways of handling censored instances. Here we list three of them:\n1. `Uncensored` simply discards all the censored individuals and compute the MAE for all the uncensored instances.\n2. `Hinge` calculates the early prediction error. For a censored instance, if the predicted survival time is smaller than the censored time, then `MAE = censor_time - predict_time`. If the predicted survival time is equal or larger than the censored time, then `MAE = 0`. Note that the standard `Hinge` method requires the `Weighted` parameter to be set to `False`.\n3. `Pseudo_obs` \u201cde-censors\u201d the censored patients, using pseudo-observation method (by estimating the contribution of a censored subject to the whole Kaplan-Meier distribution). Then it calculates the MAE between de-censoring time and the predicted survival time, just like the normal way. Note that the standard `Pseudo_obs` method requires the `Weighted` parameter to be set to `True`.\n\n\n## Mean Squared Error and Root Mean Squared Error\nMean squared error (MSE) is another metric to measure the difference between the actual and predicted survival times.\nSimilar to MAE, mean squared error (MSE) also has multiple ways to handle censored instances, similar to MAE.\n1. `Uncensored`\n2. `Hinge`\n3. `Pseudo_obs`\n\nWe also have root mean squared error (RMSE) for each of the different ways.\n\n## Integrated Brier Score (IBS)\nIBS measures the squared difference between the predicted survival curve with the Heaviside step function of the observed event.\nIBS can be viewed as the integration of the (single-time) Brier score across all the time points. \nA smaller IBS value is preferred over the larger value. \nThis python implementation uses IPCW weighting to handle the censored instances. Please refer to [Assessment and Comparison of Prognostic Classification Schemes for Survival Data](https://pubmed.ncbi.nlm.nih.gov/10474158/) for the detail of IPCW weighting.\nPlease also note that IBS is also similar to the [Continuous Ranked Probability Score (CRPS)](https://arxiv.org/abs/1806.08324), except (1) the IPCW weighting, and (2) squared error instead of absolute error.\n\n## Distribution Calibration (D-calibration)\n[Haider et al.](https://jmlr.org/papers/volume21/18-772/18-772.pdf) proposed distribution calibration (D-calibration) test for determining if a model that produces ISDs is meaningful. \nD-calibration splits the time-axis into a fixed number of intervals and compares the actual number of events with the predicted number of events within each interval. \nA well D-calibrated model is the one where the predicted number of events within each time interval is statistically similar to the observed number.\nModels with p-value higher than 0.05 can be considered as well-calibrated model across the survival distribution.\n\nD-calibration quantifies this comparison of predicted and actual events within each time interval. \nThe details of D-calibration calculations and ways to incorporate censored instances into D-calibration computation appear in Appendix B and in [Effective Ways to Build and Evaluate Individual Survival Distributions](https://jmlr.org/papers/volume21/18-772/18-772.pdf).\n\n## Area Under the Receiver Operating Characteristic (AUROC)\nAUROC is a metric to measure the performance of a single time probability prediction. \nIt is the area under the receiver operating characteristic curve, which is the plot of the true positive rate against the false positive rate at various threshold settings.\nIn the survival analysis, the single time probability prediction is the prediction of the survival probability at a specific time point.\nAnd the true label is whether the patient died at that time point.\nAUROC excludes the censored instances whose censoring time is earlier than the target time point.\n\n## Brier Score (BS)\nThe Brier score, at a specific time-point, is computed as the mean squared error between the observed event (binary indicator variable) and the predicted event probability at that time-point. \nIt is meaningful in the sense that the square root of the Brier score is the distance between the observed and predicted event on the probability scale. \n\n\n## One-time Calibration (1-calibration)\nCalibration measures the confidence of the model. \nThe detailed explanation for the algorithm implementation can be found in [Effective Ways to Build and Evaluate Individual Survival Distributions](https://jmlr.org/papers/volume21/18-772/18-772.pdf) and [A tutorial on calibration measurements and calibration models for clinical prediction models](https://academic.oup.com/jamia/article/27/4/621/5762806).\nThe output is a p-value of Hosmer-Lemeshow goodness-of-fit test at a target time. \nModels with p-value higher than 0.05 can be considered as well-calibrated model at that time.\n\n\n## Installation\nYou can install the package via pip.\n```bash\npip install SurvivalEVAL\n```\n\nOr if you want to do some modification by yourself. \nClone the repo, cd into it and install it in editable mode (`-e` option).\nThat way, these are no more need to re-install the package after modification.\n```bash\ngit clone https://github.com/shi-ang/SurvivalEVAL.git\ncd SurvivalEVAL\npip install -r requirements.txt\npip install -e . \n```\n\n## Quickstart Example\n\nInstall a survival analysis package, such as `lifelines`, and load the data.\nThen, you can use the following code to evaluate the model.\n\n```python\nfrom lifelines import CoxPHFitter\nfrom lifelines.datasets import load_rossi\n\nfrom SurvivalEVAL.Evaluator import LifelinesEvaluator\n\n# Load the data\nrossi = load_rossi()\nrossi = rossi.sample(frac=1.0)\n\n# Split train/test set\ntrain = rossi.iloc[:300, :]\ntest = rossi.iloc[300:, :]\ntrain_event_times = train.week.values\ntrain_event_indicators = train.arrest.values\ntest_event_times = test.week.values\ntest_event_indicators = test.arrest.values\n\n# Fit the model\ncph = CoxPHFitter()\ncph.fit(train, duration_col='week', event_col='arrest')\n\nsurvival_curves = cph.predict_survival_function(test)\n\n# Make the evaluation\neval = LifelinesEvaluator(survival_curves, test_event_times, test_event_indicators,\n                          train_event_times, train_event_indicators)\n\ncindex, _, _ = eval.concordance()\n\nmae_score = eval.mae(method=\"Pseudo_obs\")\n\nmse_score = eval.mse(method=\"Hinge\")\n\n# The largest event time is 52. So we use 53 time points (0, 1, ..., 52) to calculate the IBS\nibs = eval.integrated_brier_score(num_points=53, draw_figure=True)\n\nd_cal = eval.d_calibration()\n\n# The target time for the single time probability prediction is set to 25\nauc_score = eval.auc(target_time=25)\nbs_score = eval.brier_score(target_time=25)\none_cal = eval.one_calibration(target_time=25)\n\n```\nSee the [Examples](examples) for more usage examples.\n\n\n## Expected Deliveries in the Future\n1. Time-dependent c-index (by Antolini)\n2. IPCW AUC\n\nPlease create an issue if you want me to implement any other evaluation metrics.\n\n## Citing this work\n\nWe recommend you use the following to cite `SurvivalEVAL` in your publications:\n\n```\n@article{qi2024survivaleval,\nyear = {2024},\nmonth = {01},\npages = {453-457},\ntitle = {{SurvivalEVAL}: A Comprehensive Open-Source Python Package for Evaluating Individual Survival Distributions},\nauthor={Qi, Shi-ang and Sun, Weijie and Greiner, Russell},\nvolume = {2},\njournal = {Proceedings of the AAAI Symposium Series},\ndoi = {10.1609/aaaiss.v2i1.27713}\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The most comprehensive Python package for evaluating survival analysis models.",
    "version": "0.3.0",
    "project_urls": {
        "Homepage": "https://github.com/shi-ang/SurvivalEVAL"
    },
    "split_keywords": [
        "survival analysis",
        " evaluation",
        " metrics",
        " survivaleval"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b187b635fe25d77f490288d00e099034c6b61df6e21d6d4b53c77c5c778cd05",
                "md5": "bac1c8f80837fd2f214003415b3035d0",
                "sha256": "40ed377983d17e320849fcb98d6f7c49f49e128510e05d61f6146efc7dfe3f15"
            },
            "downloads": -1,
            "filename": "SurvivalEVAL-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bac1c8f80837fd2f214003415b3035d0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 39516,
            "upload_time": "2024-09-27T02:09:17",
            "upload_time_iso_8601": "2024-09-27T02:09:17.434445Z",
            "url": "https://files.pythonhosted.org/packages/0b/18/7b635fe25d77f490288d00e099034c6b61df6e21d6d4b53c77c5c778cd05/SurvivalEVAL-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b719b6962446af67830e98c45cf3d04f61844c0d767468c5738bbc4d213e342",
                "md5": "a208de47ca6e0c74e962b86da7beffb7",
                "sha256": "94f8c4d47c8a4054c9ac1ee196cfe83d228ac5243621147d0d4dac13e5d43638"
            },
            "downloads": -1,
            "filename": "SurvivalEVAL-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a208de47ca6e0c74e962b86da7beffb7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 46024,
            "upload_time": "2024-09-27T02:09:18",
            "upload_time_iso_8601": "2024-09-27T02:09:18.608607Z",
            "url": "https://files.pythonhosted.org/packages/8b/71/9b6962446af67830e98c45cf3d04f61844c0d767468c5738bbc4d213e342/SurvivalEVAL-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-27 02:09:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "shi-ang",
    "github_project": "SurvivalEVAL",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "tqdm",
            "specs": [
                [
                    ">=",
                    "4.49.0"
                ]
            ]
        },
        {
            "name": "torch",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.2.0"
                ]
            ]
        },
        {
            "name": "scikit-learn",
            "specs": [
                [
                    ">=",
                    "1.0.2"
                ]
            ]
        },
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.4.3"
                ]
            ]
        },
        {
            "name": "pandas",
            "specs": [
                [
                    ">=",
                    "1.2.0"
                ]
            ]
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.14.0"
                ]
            ]
        }
    ],
    "lcname": "survivaleval"
}
        
Elapsed time: 4.00760s