Rui Liu
Results
4
issues of
Rui Liu
Would you please public the code for make the Brats data into the slices you mentioned in the paper?
1
The original Brtas2020 is 155*240*240, but the paper said it should be change into slices with 5*240*240, Would you provide the code for that? Thanks advanced!
函数 def normalize(slice, bottom=99, down=1): 能解释一下99和1这两个取值的含义吗? Thanks!
``` def training_step(self, batch): image, label = self.get_input(batch) x_start = label x_start = (x_start) * 2 - 1 ``` why x_start = (x_start)*2 -1 ? Can I use x_start directly,...