Open zhang-qiang-github opened 3 years ago
My point :
for the Brats Dataset, the input does have 4 channel, ie. t1, t1ce, t2, flair,
so I think it's correct, no bug.
For Brats Dataset, it is OK. But, for another dataset, the channel may be not 4. So, self.Unet = Unet(in_channels=num_channels, base_channels=16, num_classes=4)
may be more robust.
For Brats Dataset, it is OK. But, for another dataset, the channel may be not 4. So,
self.Unet = Unet(in_channels=num_channels, base_channels=16, num_classes=4)
may be more robust.
yes, agree with you
In the TransBTS_downsample8x_skipconnection.TransformerBTS:
This code would force the input has 4 channel. I think it should be modified as:
Am I right?