Rubics-Xuan / TransBTS

This repo provides the official code for : 1) TransBTS: Multimodal Brain Tumor Segmentation Using Transformer (https://arxiv.org/abs/2103.04430) , accepted by MICCAI2021. 2) TransBTSV2: Towards Better and More Efficient Volumetric Segmentation of Medical Images(https://arxiv.org/abs/2201.12785).
Apache License 2.0
387 stars 81 forks source link

About training settings #5

Closed cvbird closed 3 years ago

cvbird commented 3 years ago

First of all, thank you for your paper and code. Actually, I am a bit puzzled about the training settings. As mentioned in the paper, the model was trained for 6000 epochs, with batch size 8 on 4 RTX GPU. Indeed I am not quite familiar with this dataset and wonder the scale of it? how many iterations/ steps in each epoch? if the dataset is small, why it takes so many epochs to converge ? Thanks again!

Rubics-Xuan commented 3 years ago

The 3D MRI dataset used in the experiments is provided by the Brain Tumor Segmentation (BraTS) 2019 challenge. It contains 335 cases of patients for training and 125 cases for validation. You can check for more details in our paper. During the experiments, we found that whole network is difficult to converge because of the Transformer part if we only train the network for 500 epochs. So we choose to train the whole network for more epochs at the base of not overfitting.