You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@WuJunde Kindly let me know how many images are in the training set, also in bratsdataloader.py
n = x // 155 #quotient
slice = x % 155 #remainder
o = torch.tensor(nib_img.get_fdata())[:,:,slice]
what does this slice usage say? only one slice out of 155 is used for training. Kindly explain the data loader as using the given loader once after data is loaded I saved the images all 5 images(t1,t2...) as png, they look wrong. kindly explain about how you used 240x240x155 original image shape, what pre-processing is done and where and how to find the hd95, jaccard,dice scores?
BRATSDataset3D为什么会有两个len函数
def len(self):
return len(self.database) * 155
def len(self):
return len(self. Database)
The text was updated successfully, but these errors were encountered: