sfleisch

Results 10 comments of sfleisch

Please look at the[ NIfTI Image Converter repo](https://github.com/alexlaurence/NIfTI-Image-Converter/). I found it very easy to use.

Old question but new answer: Comment it out - it doesn't exist. And remove the attempt to plot using the function from p2ch13_explore_data.ipynb. Most of the part2 notebooks are missing...

I realize this is about 6 months too late but in case anyone hits the same problem: Yeah, much of the code in this github plain doesn't work and is...

The code is wrong in the function "initModel" in training.py. Current code: ``` def initModel(self): model = LunaModel() if self.use_cuda: log.info("Using CUDA; {} devices.".format(torch.cuda.device_count())) if torch.cuda.device_count() > 1: model =...

Not exactly sure how you get a TensorFlow error with PyTorch but I'm guessing that's from tensorboard? As far as not finding the libcudart.so.11.0 , please check your CUDA version....

None of the notebooks work. In many cases you can figure out how to fix them.

The code in the tensorflow_2 branch works with the 2.0.0 release version.

CelebA: http://mmlab.ie.cuhk.edu.hk/projects/CelebA.html You can get the files from the link to Google Drive or Baidu Drive. They are public datasets so no cost to download but you will need a...

IANTA (I Am Not the Author) but: CelabA 1. Get a google account if you don't have one. 2. Go to the [celebA website](http://mmlab.ie.cuhk.edu.hk/projects/CelebA.html) 1. Select the [Aligned&Cropped Images](https://drive.google.com/open?id=0B7EVK8r0v71pWEZsZE9oNnFzTm8). This...

I think I have the workaround: 1. set the floating point global policy to float32 3. create the dataset with the randaugment (or any keras_cv augmentation layer(s)) mapping 4. set...