pytorch-nested-unet icon indicating copy to clipboard operation
pytorch-nested-unet copied to clipboard

PyTorch implementation of UNet++ (Nested U-Net).

Results 41 pytorch-nested-unet issues
Sort by recently updated
recently updated
newest added

Help!! I can't predict my model because it's giving me the error: `ValueError: Input 0 of layer dense_3 is incompatible with the layer: expected axis -1 of input shape to...

I'm training a CNN and it looks like the program reads my dataset properly. ``` i = 0 for f, breed in tqdm(df_train.values): if type(cv2.imread('train_{}.jpeg'.format(f)))==type(None): continue else: img = cv2.imread('train_{}.jpeg'.format(f))...

I used the model pruning technique to cut L4 to L2, iou from 0.8417 to 0.8391, but my time has increased, what is the reason? I only pruned the model...

As mentioned in the paper, how can I utilize the output of this code to retrieve single instances?

Hi, thank you for this project, I have a question about the dataset. Let's say if we have 20 classes, does it mean we should create 20 identical folders in...

Hi, I'm sorry to disturb you. Do you have some recommendation of **easy and multi-categories medical datasets for semantic segmentation**. I'm doing my undergraduate graduation project, and I'm lack of...

![image](https://user-images.githubusercontent.com/59160592/79937329-cb9f0500-8483-11ea-953d-f340425b5af9.png) If num_class default 1, mean mask contain of two color: white and black ? You can explain argument deepsupervision. When do I should setup True for deepsupervision argument ?