umangksinha
Results
2
issues of
umangksinha
Hi Marvin, Great project! I am trying to utilize it in my own research and went through your convcrf.py code. I have a doubt around [this line](https://github.com/MarvinTeichmann/ConvCRF/blob/88053dfc3ba8c97c7e1292c833b31486d1a30ef3/convcrf/convcrf.py#L578) where if I...
Hi, there is a small correction in the unet code In Dblock the nn.Conv2d accepts integer channel sizes so channel/2 is not acceptable, changing it to int(channel/2) works though