All Projects → durandtibo → Wildcat.pytorch

durandtibo / Wildcat.pytorch

Licence: mit
PyTorch implementation of "WILDCAT: Weakly Supervised Learning of Deep ConvNets for Image Classification, Pointwise Localization and Segmentation", CVPR 2017

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Wildcat.pytorch

Residual Attention Network
Residual Attention Network for Image Classification
Stars: ✭ 525 (+120.59%)
Mutual labels:  image-classification, cvpr-2017
Pixel level land classification
Tutorial demonstrating how to create a semantic segmentation (pixel-level classification) model to predict land cover from aerial imagery. This model can be used to identify newly developed or flooded land. Uses ground-truth labels and processed NAIP imagery provided by the Chesapeake Conservancy.
Stars: ✭ 217 (-8.82%)
Mutual labels:  image-classification
Beauty Net
A simple, flexible, and extensible template for PyTorch. It's beautiful.
Stars: ✭ 190 (-20.17%)
Mutual labels:  image-classification
Dataturks
ML data annotations made super easy for teams. Just upload data, add your team and build training/evaluation dataset in hours.
Stars: ✭ 200 (-15.97%)
Mutual labels:  image-classification
Rpnplus
RPN+(Tensorflow) for people detection
Stars: ✭ 191 (-19.75%)
Mutual labels:  cvpr-2017
Pytorch realtime multi Person pose estimation
Pytorch version of Realtime Multi-Person Pose Estimation project
Stars: ✭ 205 (-13.87%)
Mutual labels:  cvpr-2017
Transformer In Transformer
Implementation of Transformer in Transformer, pixel level attention paired with patch level attention for image classification, in Pytorch
Stars: ✭ 176 (-26.05%)
Mutual labels:  image-classification
Catalyst
Accelerated deep learning R&D
Stars: ✭ 2,804 (+1078.15%)
Mutual labels:  image-classification
Pytorch Lapsrn
Pytorch implementation for LapSRN (CVPR2017)
Stars: ✭ 215 (-9.66%)
Mutual labels:  cvpr-2017
Imageatm
Image classification for everyone.
Stars: ✭ 201 (-15.55%)
Mutual labels:  image-classification
Sca Cnn.cvpr17
Image Captions Generation with Spatial and Channel-wise Attention
Stars: ✭ 198 (-16.81%)
Mutual labels:  cvpr-2017
Nude.js
Nudity detection with JavaScript and HTMLCanvas
Stars: ✭ 2,236 (+839.5%)
Mutual labels:  image-classification
Labelimg
🖍️ LabelImg is a graphical image annotation tool and label object bounding boxes in images
Stars: ✭ 16,088 (+6659.66%)
Mutual labels:  image-classification
Igcv3
Code and Pretrained model for IGCV3
Stars: ✭ 191 (-19.75%)
Mutual labels:  image-classification
Nfnets Pytorch
NFNets and Adaptive Gradient Clipping for SGD implemented in PyTorch
Stars: ✭ 215 (-9.66%)
Mutual labels:  image-classification
Cvpr 2017 Abstracts Collection
Collection of CVPR 2017, including titles, links, authors, abstracts and my own comments
Stars: ✭ 186 (-21.85%)
Mutual labels:  cvpr-2017
Deep Learning With Python
Deep learning codes and projects using Python
Stars: ✭ 195 (-18.07%)
Mutual labels:  image-classification
Group Normalization Tensorflow
A TensorFlow implementation of Group Normalization on the task of image classification
Stars: ✭ 205 (-13.87%)
Mutual labels:  image-classification
Googlenet Inception
TensorFlow implementation of GoogLeNet and Inception for image classification.
Stars: ✭ 230 (-3.36%)
Mutual labels:  image-classification
Ml Classifier Ui
A UI tool for quickly training image classifiers in the browser
Stars: ✭ 224 (-5.88%)
Mutual labels:  image-classification

wildcat.pytorch

PyTorch implementation of "WILDCAT: Weakly Supervised Learning of Deep ConvNets for Image Classification, Pointwise Localization and Segmentation", CVPR 2017 (http://webia.lip6.fr/~durandt/pdfs/2017_CVPR/Durand_WILDCAT_CVPR_2017.pdf)

Requirements

Please, install the following packages

  • numpy
  • torch
  • torchnet
  • torchvision
  • tqdm

Options

  • k: number of regions for the spatial pooling. If k is larger than 1, k is the number of regions, otherwise k is the proportion of selected regions. k=0.2 means that 20% of the regions are used.
  • maps: number of maps for each class
  • alpha: weight for minimum regions
  • lr: learning rate
  • lrp: factor for learning rate of pretrained layers. The learning rate of the pretrained layers is lr * lrp
  • batch-size: number of images per batch
  • image-size: size of the image
  • epochs: number of training epochs

Demo VOC 2007

python3 -m wildcat.demo_voc2007 ../data/voc --image-size 448 --batch-size 16 --lrp 0.1 --lr 0.01 --epochs 20 --k 0.2 --maps 8 --alpha 0.7

Demo MIT67

python3 -m wildcat.demo_mit67 ../data/mit67 --image-size 448 --batch-size 16 --lrp 0.1 --lr 0.001 --epochs 20 --k 0.4 --maps 8

Citing this repository

If you find this code useful in your research, please consider citing us:

@inproceedings{Durand_WILDCAT_CVPR_2017,
author = {Durand, Thibaut and Mordan, Taylor and Thome, Nicolas and Cord, Matthieu},
title = {{WILDCAT: Weakly Supervised Learning of Deep ConvNets for Image Classification, Pointwise Localization and Segmentation}},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
year = {2017}
}

Licence

MIT License

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].