xmindflow / DermoSegDiff

[MICCAI 2023] DermoSegDiff: A Boundary-aware Segmentation Diffusion Model for Skin Lesion Delineation
https://arxiv.org/abs/2308.02959
MIT License
57 stars 9 forks source link

CUDA Plugin Conflicts #4

Closed Sajjadkhani closed 7 months ago

Sajjadkhani commented 7 months ago

In testing DermoSegDiff for some images in googleColab I am experiencing CUDA plugin conflicts (cuDNN, cuFFT, cuBLAS). Here is the error file. error.txt

bravo-hq commented 7 months ago

Dear @Sajjadkhani,

Thank you for reaching out to us with your issue. Upon reviewing the error logs you've provided, it appears that the core problem is related to a missing file in your project directory. The RuntimeError indicated in the PyTorch traceback points to a 'file not found' issue, specifically the absence of 'output/dataset/masks/ISIC_0024343_segmentation.png'.

This error typically occurs under two circumstances: either the file does not actually exist in the specified location, or there is a misconfiguration in the file path within your code. I would recommend verifying the existence of this file in the path mentioned. If the file is indeed there, the next step would be to check your code for any potential path misconfigurations. It's crucial to ensure that the directory structure in your project aligns with the paths expected in the code.

Please let us know if this resolves the issue or if you need further assistance.

Sincerely, Yousef Sadegheih