KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
DeSurv
★ 10
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
mips-cpu
:
MIPS CPU in verilog
pay-routing
:
支付路由
FDIA-and-MTD-for-power-system
:
My graduation project
django-dublin-inn-real-estate
:
A web application for a Real Estate Company based in Dublin, Ireland, that allows the user to find a house, being able to filter them by location, property type, or price range.
2fa
:
CLI Command for Two Factor Authentication.🚀
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
DeSurv
?
Download (.md)
Welcome to the repository for "Derivative-Based Neural Modelling of Cumulative Distribution Functions for Survival Analysis", to appear at AISTATS 2022. ## Getting started Create a virtual environment and activate it: ``` python -m venv desurv_env source desurv_env/bin/activate ``` Install dependencies: ``` python -m pip install -r requirements.txt ``` Access the source code: ``` cd src ``` Use DeCDF for CDF/density estimation: ``` python -m jupyter notebook fig2.ipynb ``` Train a DeSurv model: ``` python desurv.py ``` ### Additional info: The core code components of DeCDF/DeSurv can be found in `classes.py`. The `ODESurvSingle` class implements a DeSurv model for the single-risk setting. The `ODESurvMultiple` class implements a DeSurv model for the competing-risk setting. `desurv.py` illustrates how a DeSurv model can be trained and is designed to be easily adaptable to a typical user's problem setting. `fig2.ipynb` illustrates the basic concept behind DeCDF and hence DeSurv in an interactive setting. ### Acknowledgements We would like to acknowledge the [pycox](https://github.com/havakv/pycox) library of Kvamme et al. for its excellent dataset, model and evaluation provisions which proved very useful when undertaking this project.