Skip to content
#

fpn

Here are 27 public repositories matching this topic...

captainst
captainst commented Oct 15, 2019

In file binary segmentation (camvid).ipynb, block 5, there is:

# Lets look at data we have
dataset = Dataset(x_train_dir, y_train_dir, classes=['car', 'pedestrian'])
image, mask = dataset[5] # get some sample
visualize(
    image=image, 
    cars_mask=mask[..., 0].squeeze(),
    sky_mask=mask[..., 1].squeeze(),
    background_mask=mask[..., 2].squeeze(),
)

here, sky_mask

powermano
powermano commented Jun 6, 2018

What is the Map in pascal voc 07 dataset using this code? As i read your code, i find that you do not fix the BN parameters. The batchsize is small, following the paper FPN or Mask RCNN, you need to set the training and trainbale to False for the slim.batch_norm op. I am testing whether this is the problem for the bad generalization for mutiple objects.

Improve this page

Add a description, image, and links to the fpn topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the fpn topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.