Modified-3D-UNet-Pytorch
Modified-3D-UNet-Pytorch copied to clipboard
This repository implements pytorch version of the modifed 3D U-Net from Fabian Isensee et al. participating in BraTS2017
Results
1
Modified-3D-UNet-Pytorch issues
Sort by
recently updated
recently updated
newest added
trafficstars
``` for epoch in range(max_epochs): # Training for orig, segmented in training_generator: # Transfer to GPU orig, segmented = local_batch.to(device), local_labels.to(device) ``` orig and segmented are torch tensors that represent...