resnet
Here are 522 public repositories matching this topic...
Please can you train ghostnet.
(i don't have the imagenet dataset)
When I delete the lib.utils. ,the test.py is right but the demo.py is wrong , however,when I use the lib.utils. , the demo.py is right but the test.py is wrong !!
why? why
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
Using this issue to keep track of the state-of-the-art achieved using ResNeSt models:
Instance Segmentation
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
Caffe models (including classification, detection and segmentation) and deploy files for famouse networks
-
Updated
Mar 22, 2018 - Python
Residual networks implementation using Keras-1.0 functional API
-
Updated
Jan 9, 2018 - Python
Pretrained Pytorch face detection (MTCNN) and recognition (InceptionResnet) models
-
Updated
May 23, 2020 - Python
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
Yolov3 slow?
with video_demo.py about 20% speed compared to your 1.0 repo. but thanks much for sharing!
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),
PyTorch implementation of DQN, AC, ACER, A2C, A3C, PG, DDPG, TRPO, PPO, SAC, TD3 and ....
-
Updated
Mar 18, 2020 - Python
Classification models trained on ImageNet. Keras.
-
Updated
Apr 7, 2020 - Python
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 7, 2020 - Python
Books, Presentations, Workshops, Notebook Labs, and Model Zoo for Software Engineers and Data Scientists wanting to learn the TF.Keras Machine Learning framework
-
Updated
Jun 4, 2020 - Jupyter Notebook
Batch first in LSTM
In the LSTM documentation is specified that we should feed to the RNN inputs of shape (seq_len, batch, input_size) however it seems to me that we are feeding inputs with shape (batch, seq_len, input_size).
Therefore I believe that the parameter batch_first should be set True.
猫狗大战
-
Updated
May 21, 2018 - Jupyter Notebook
Typos in readme.md
A collection of deep learning tutorials using Tensorflow and Python
-
Updated
Mar 26, 2017 - Jupyter Notebook
PyTorch implementation of CNNs for CIFAR benchmark
-
Updated
Feb 22, 2020 - Python
CTR prediction models based on deep learning(基于深度学习的广告推荐CTR预估模型)
-
Updated
Nov 15, 2019 - Python
-
Updated
May 1, 2019
cv2.minAreaRect(box)
See here,
Developer should keep in mind that the returned rotatedRect can contain negative indices when data is close to the containing Mat element bo
Tutorial for video classification/ action recognition using 3D CNN/ CNN+RNN on UCF101
-
Updated
May 31, 2019 - Jupyter Notebook
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.
Add this topic to your repo
To associate your repository with the resnet topic, visit your repo's landing page and select "manage topics."




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