├── .gitignore ├── LICENSE ├── README.md ├── class_DeepHitPlus.py ├── get_features.py ├── import_data.py ├── run_deephitplus.py ├── sample data └── SYNTHETIC │ └── synthetic_comprisk.csv ├── train_deephit.py ├── utils_eval.py └── utils_network.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/README.md -------------------------------------------------------------------------------- /class_DeepHitPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/class_DeepHitPlus.py -------------------------------------------------------------------------------- /get_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/get_features.py -------------------------------------------------------------------------------- /import_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/import_data.py -------------------------------------------------------------------------------- /run_deephitplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/run_deephitplus.py -------------------------------------------------------------------------------- /sample data/SYNTHETIC/synthetic_comprisk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/sample data/SYNTHETIC/synthetic_comprisk.csv -------------------------------------------------------------------------------- /train_deephit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/train_deephit.py -------------------------------------------------------------------------------- /utils_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/utils_eval.py -------------------------------------------------------------------------------- /utils_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlr67/deephitplus/HEAD/utils_network.py --------------------------------------------------------------------------------