Mees Elizabeth

Results 5 comments of Mees Elizabeth

I keep getting error "conv object has no attribute '_output_padding', do you know how I could solve this?

Hi, I am trying to make lora applicable to ConvTranspose3d with this code: `class ConvTransposeLoRA(nn.Module, LoRALayer): def __init__(self, conv_module, in_channels, out_channels, kernel_size, r=0, lora_alpha=1, lora_dropout=0., merge_weights=True, **kwargs): super(ConvTransposeLoRA, self).__init__() self.conv...

Hi, similar question here! First of all, thank you for your public datasets! However, I am using your MR data to fine tune my model on, but the dice score...

Hi, thx for your response. I downloaded this dataset: https://zenodo.org/records/11367005. And then this is what I do: ``` class TotalSegDataset3DMRI: def __init__(self, data_dir): self.data_dir = data_dir self.subjects = [subject for...

Thank you! I already have the data stored as subjects (s0001 etc) with their corresponding mr.nii.gz and then their segmentations folders. I created a function to instead of having every...