You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to train your own Probabilistic UNet in PyTorch, you should first write your own data loader. Then you can use the following code snippet to train the network
17
17
@@ -33,3 +33,7 @@ for epoch in range(epochs):
33
33
loss.backward()
34
34
optimizer.step()
35
35
```
36
+
37
+
## Train on LIDC Dataset
38
+
One of the datasets used in the original paper is the LIDC dataset (https://wiki.cancerimagingarchive.net). I've preprocessed this data and stored them in 5 .pickle files which you can [download here](https://drive.google.com/drive/folders/1xKfKCQo8qa6SAr3u7qWNtQjIphIrvmd5?usp=sharing). After downloading the files you need to adjust the path in the data loader and you can start training your own Probabilistic UNet using the code snippet above.
0 commit comments