The Wayback Machine - https://web.archive.org/web/20200714011922/https://github.com/topics/resnet
Skip to content
#

resnet

Here are 556 public repositories matching this topic...

dmyersturnbull
dmyersturnbull commented May 1, 2020

This is an awesome library, thanks @ddbourgin!!

Users might not know the best way to install this package and try it out. (I didn't, so I eventually just copied the source files.)
Neither the readme nor readthedocs have install instructions.

I couldn't find it on PyPi or Anaconda, and there doesn't appear to be a pyproject.toml, setup.cfg, setup.py, or conda recipe.

Moreover, the t

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

shaibagon
shaibagon commented Jan 7, 2019

When training, the augmentation RandomScaleCrop may downscale the image and the target label image. It then pads the image and the label with [self.fill][1] which is ZERO.
This is in contrast to the "ignore value" of the loss [that is set to 255][2].
This way the loss treats the padded region as valid "class 0" pixels and compute loss for it.

self.fill of the augmentation functions

Practice on cifar100(ResNet, DenseNet, VGG, GoogleNet, InceptionV3, InceptionV4, Inception-ResNetv2, Xception, Resnet In Resnet, ResNext,ShuffleNet, ShuffleNetv2, MobileNet, MobileNetv2, SqueezeNet, NasNet, Residual Attention Network, SENet)

  • Updated Aug 27, 2019
  • Python
taehoonlee
taehoonlee commented Aug 31, 2018

The 2x down-sampling is one of the important operations in reference models. But, a convolution or a pooling with stride=2, padding='SAME' may result in different outputs over different deep learning libraries (e.g., TensorFlow, CNTK, Theano, Caffe, Torch, ...) due to their different padding behaviors.

For example (TensorNets syntax; but can be regarded as pseudo codes for other libraries),

This repository allows you to get started with a gui based training a State-of-the-art Deep Learning model with little to no configuration needed! Training with TensorFlow has never been so easy.

  • Updated Jun 23, 2020
  • Python
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 resnet 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 resnet topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.