TransUNet
TransUNet copied to clipboard
This repository includes the official project of TransUNet, presented in our paper: TransUNet: Transformers Make Strong Encoders for Medical Image Segmentation.
Can someone send me a copy of ACDC dataset or where I can down, Muchhhhhhh appreciated!!!!!!!!!! I try to download from https://www.creatis.insa-lyon.fr/Challenge/acdc/, but it takes so long to process. My...
Hi @Beckschen. Could you provide me with a preprocessed Synapse dataset? The dataset I downloaded is missing the "lists_Synapse" folder. My email: [email protected]. Thank you!
Traceback (most recent call last): File "train.py", line 93, in trainer[dataset_name](args, net, snapshot_path) File "/home/lichangyong/Code/TransUNet/trainer.py", line 57, in trainer_synapse loss_dice = dice_loss(outputs, label_batch, softmax=True) File "/home/lichangyong/.pyenv/versions/pytorch_gpu/lib/python3.8/site-packages/torch/nn/modules/module.py", line 889, in _call_impl...
Can you release the code to visualize the segmentation result of Synapse Multi-Organ Segmentation?
Hello, it seems that the code currently only works on grayscale images. II am interested in processing images with 3 channels (RGB). Has anyone already modified the code accordingly? What...
Hello! Thank you for your excellent work! I encountered a problem while training my dataset using TransBTS. My dataset is about 3D imaging of pulmonary nodules, but the proportion of...
在Linux服务器运行时,在导入包from datasets.dataset_synapse import Synapse_dataset, RandomGenerator的时候报错。因为datasets文件夹与python自带的site-packages里的datasets重名
img_size=512, grid_size=(16,16) x = torch.cat([x, skip], dim=1) RuntimeError: Sizes of tensors must match except in dimension 1. Expected size 32 but got size 64 for tensor number 1 in the...
why did the author use PreActBottleneck as the name , but in the code it used GroupNorm and Relu after Convolution? ``` def forward(self, x): # Residual branch residual =...