Skip to main content

Deep Cox Proportional Hazards Network for deep learning and survival analysis.

Project description

DeepSurv implements a deep learning generalization of the Cox proportional hazards model using Theano and Lasagne.

DeepSurv has an advantage over traditional Cox regression because it does not require an a priori selection of covariates, but learns them adaptively.

DeepSurv can be used in numerous survival analysis applications. One medical application is provided, recommend_treatment, which provides treatment recommendations for a set of patient observations.

Installation:

Dependencies:

Theano, Lasagne, lifelines, matplotlib (for visualization) and all of their respective dependencies.

Installing:

You can install DeepSurv using

pip install deepsurv

from the command line.

Running the tests:

After installing, you can optionally run the test suite with

py.test

from the command line while in the module main directory.

Training a Network:

Training DeepSurv can be done in a few lines. First, all you need to do is prepare the datasets to have the following keys:

{
        'x': (n,d) observations (dtype = float32),
        't': (n) event times (dtype = float32),
        'e': (n) event indicators (dtype = int32)
}

Then prepare a dictionary of hyper-parameters. And it takes only two lines to train a network:

network = deepsurv.DeepSurv(**hyperparams)
log = network.train(train_data, valid_data, n_epochs=500)

You can then evaluate its success on testing data:

network.get_concordance_index(**test_data)
>> 0.62269622730138632

If you have matplotlib installed, you can visualize the training and validation curves after training the network:

deepsurv.plot_log(log)

License:

MIT License

Copyright (c) 2016, Jared Katzman

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepsurv-0.1.0.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file deepsurv-0.1.0.tar.gz.

File metadata

  • Download URL: deepsurv-0.1.0.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for deepsurv-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6e1fc72bbe6a8c1396702005daeb56f50a0d2a3f64c67463fa87d2649926251f
MD5 1958b89002b903e784ea03eb8e2866e8
BLAKE2b-256 cb55416bc3610452c54ad3028bfee3a4c69b269a2b9d026be90c7221039222cc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page