[IEEE Transactions on Medical Imaging/TMI] This repo is the official implementation of "LViT: Language meets Vision Transformer in Medical Image Segmentation"
MIT License
298
stars
26
forks
source link
Train labelled/unlabeled split for semi-supervised setup #49
I have been following your work and I have been unable to find the labeled/unlabeled split for QaTa-COV19 and MosMedData+ used in the semi-supervised setup. To replicate the results proposed in the paper what splitting strategy should I use? If there is a split already available, please do let me know.
Please use train_dataset, test_dataset = torch.utils.data.random_split(full_dataset, [train_size, test_size]) to split the dataset, and the random seed is the same as others.
I have been following your work and I have been unable to find the labeled/unlabeled split for QaTa-COV19 and MosMedData+ used in the semi-supervised setup. To replicate the results proposed in the paper what splitting strategy should I use? If there is a split already available, please do let me know.