All Projects → yueruchen → Sppnet Pytorch

yueruchen / Sppnet Pytorch

Licence: apache-2.0
A simple Spatial Pyramid Pooling layer which could be added in CNN

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sppnet Pytorch

Resnetcam Keras
Keras implementation of a ResNet-CAM model
Stars: ✭ 269 (+35.86%)
Mutual labels:  cnn, cnn-model
Keras transfer cifar10
Object classification with CIFAR-10 using transfer learning
Stars: ✭ 120 (-39.39%)
Mutual labels:  cnn, cnn-model
Vincent Ai Artist
Style transfer using deep convolutional neural nets
Stars: ✭ 176 (-11.11%)
Mutual labels:  cnn, cnn-model
Hidden Two Stream
Caffe implementation for "Hidden Two-Stream Convolutional Networks for Action Recognition"
Stars: ✭ 179 (-9.6%)
Mutual labels:  cnn
Speech Emotion Recognition
Speech emotion recognition implemented in Keras (LSTM, CNN, SVM, MLP) | 语音情感识别
Stars: ✭ 181 (-8.59%)
Mutual labels:  cnn
Cnn Re Tf
Convolutional Neural Network for Multi-label Multi-instance Relation Extraction in Tensorflow
Stars: ✭ 190 (-4.04%)
Mutual labels:  cnn
Ailearnnotes
Artificial Intelligence Learning Notes.
Stars: ✭ 195 (-1.52%)
Mutual labels:  cnn
Tensorflow Tutorials
텐서플로우를 기초부터 응용까지 단계별로 연습할 수 있는 소스 코드를 제공합니다
Stars: ✭ 2,096 (+958.59%)
Mutual labels:  cnn
Liteflownet2
A Lightweight Optical Flow CNN - Revisiting Data Fidelity and Regularization, TPAMI 2020
Stars: ✭ 195 (-1.52%)
Mutual labels:  cnn
Depression Detect
Predicting depression from acoustic features of speech using a Convolutional Neural Network.
Stars: ✭ 187 (-5.56%)
Mutual labels:  cnn
Freihand
A dataset for estimation of hand pose and shape from single color images.
Stars: ✭ 187 (-5.56%)
Mutual labels:  cnn
Tensorflow Mnist Cnn
MNIST classification using Convolutional NeuralNetwork. Various techniques such as data augmentation, dropout, batchnormalization, etc are implemented.
Stars: ✭ 182 (-8.08%)
Mutual labels:  cnn
Did Mdn
Density-aware Single Image De-raining using a Multi-stream Dense Network (CVPR 2018)
Stars: ✭ 192 (-3.03%)
Mutual labels:  cnn
Hand tracking samples
👋 👌 research codebase for depth-based hand pose estimation using dynamics based tracking and CNNs
Stars: ✭ 180 (-9.09%)
Mutual labels:  cnn
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (-1.52%)
Mutual labels:  cnn
Keraspp
코딩셰프의 3분 딥러닝, 케라스맛
Stars: ✭ 178 (-10.1%)
Mutual labels:  cnn
Cnn Visualization
TensorFlow implementations of visualization of convolutional neural networks, such as Grad-Class Activation Mapping and guided back propagation
Stars: ✭ 194 (-2.02%)
Mutual labels:  cnn
Bilinear Cnn Tensorflow
This is an implementation of Bilinear CNN for fine grained visual recognition using TensorFlow.
Stars: ✭ 187 (-5.56%)
Mutual labels:  cnn
Lidc nodule detection
lidc nodule detection with CNN and LSTM network
Stars: ✭ 187 (-5.56%)
Mutual labels:  cnn
Beauty Net
A simple, flexible, and extensible template for PyTorch. It's beautiful.
Stars: ✭ 190 (-4.04%)
Mutual labels:  cnn

sppnet-pytorch

SPP layer could be added in CNN model between convolutional layer and fully-connected lay, so that you can input multi-size images into your CNN model. We use this structure in the paper Pedestrian-Synthesis-GAN: Generating Pedestrian Data in Real Scene and Beyond The function spatial_pyramid_pool() in file spp_layer.py is independent. It could be added in your own models. See this:Spatial Pyramid Pooling in Deep Convolutional Networks for Visual Recognition

Citation

If you find this work useful for your research, please cite:

@article{ouyang2018pedestrian,
  title={Pedestrian-Synthesis-GAN: Generating Pedestrian Data in Real Scene and Beyond},
  author={Ouyang, Xi and Cheng, Yu and Jiang, Yifan and Li, Chun-Liang and Zhou, Pan},
  journal={arXiv preprint arXiv:1804.02047},
  year={2018}
}

and

@inproceedings{he2014spatial,
  title={Spatial pyramid pooling in deep convolutional networks for visual recognition},
  author={He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian},
  booktitle={European conference on computer vision},
  pages={346--361},
  year={2014},
  organization={Springer}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].