jaredleekatzman
jaredleekatzman
What version of Lasagne do you have currently installed? > On Jun 19, 2017, at 2:28 AM, caicai2526 wrote: > > I following readme.txt file,when i run py.test ,i meet...
@caicai2526 this could be due to you have different versions of python packages installed for different users on your computer. Try using virtual environments and/or a clean environment
Hi Xing, One of the problems you encountered could be because DeepSurv currently only supports input datasets in the format of numpy arrays, not pandas data frame. Try and structure...
I just uploaded a simple [notebook](https://github.com/jaredleekatzman/DeepSurv/blob/master/notebooks/DeepSurv%20Example.ipynb) showing how to take a CSV file and create a dataset to use with DeepSurv. Take a look at that and see if you...
@dareneiri When calculating the concordance index, the absolute event times are not necessary because the CI is calculated by comparing relative event times. DeepSurv isn't predicting the event time for...
Ah sorry it looks like I tried to quickly fix your problem in #29, I needed some of the later commits as well. I merged the `revision` branch into master....
Hi, thank you for your interest with DeepSurv! Variable importance is not currently implemented. If you go ahead and implement it, I’m happy to accept a pull request. On Fri,...
Some of the things you should look at: - Normalize the data before training (and then normalize the training data by the same mean and variance of the training set)...
@scienceML usually when you receive consistent 0.5 concordance index (or Nan) it is because your network is not training correctly. Usually this is due to problems in either: data normalization...
The hyper-parameters were selected from running a random [hyper-parameter search with sobol sequence](http://optunity.readthedocs.io/en/latest/notebooks/notebooks/basic-sobol.html). Finding hyper-parameters is one of the hardest parts of machine learning. I suggest you google and learn...