All Projects → alokwhitewolf → Class-Activation-Mappings

alokwhitewolf / Class-Activation-Mappings

Licence: MIT License
Visualizing where the Convolution Network is looking through CAM.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Class-Activation-Mappings

neuralBlack
A Multi-Class Brain Tumor Classifier using Convolutional Neural Network with 99% Accuracy achieved by applying the method of Transfer Learning using Python and Pytorch Deep Learning Framework
Stars: ✭ 36 (+80%)
Mutual labels:  resnet, resnet-50
Retinal-Disease-Diagnosis-With-Residual-Attention-Networks
Using Residual Attention Networks to diagnose retinal diseases in medical images
Stars: ✭ 14 (-30%)
Mutual labels:  resnet
general backbone
No description or website provided.
Stars: ✭ 37 (+85%)
Mutual labels:  resnet
Keras-CIFAR10
practice on CIFAR10 with Keras
Stars: ✭ 25 (+25%)
Mutual labels:  resnet
eye-contact-cnn
Deep neural network trained to detect eye contact from facial image
Stars: ✭ 31 (+55%)
Mutual labels:  resnet-50
RMNet
RM Operation can equivalently convert ResNet to VGG, which is better for pruning; and can help RepVGG perform better when the depth is large.
Stars: ✭ 129 (+545%)
Mutual labels:  resnet
CoreML-samples
Sample code for Core ML using ResNet50 provided by Apple and a custom model generated by coremltools.
Stars: ✭ 38 (+90%)
Mutual labels:  resnet
alpha-zero
AlphaZero implementation for Othello, Connect-Four and Tic-Tac-Toe based on "Mastering the game of Go without human knowledge" and "Mastering Chess and Shogi by Self-Play with a General Reinforcement Learning Algorithm" by DeepMind.
Stars: ✭ 68 (+240%)
Mutual labels:  resnet
Faster-RCNN-TensorFlow
TensorFlow implementation of Faster RCNN for Object Detection
Stars: ✭ 13 (-35%)
Mutual labels:  resnet
pyro-vision
Computer vision library for wildfire detection
Stars: ✭ 33 (+65%)
Mutual labels:  resnet
art
Exploring the connections between artworks with deep "Visual Analogies"
Stars: ✭ 73 (+265%)
Mutual labels:  resnet-50
COVID-CXNet
COVID-CXNet: Diagnosing COVID-19 in Frontal Chest X-ray Images using Deep Learning. Preprint available on arXiv: https://arxiv.org/abs/2006.13807
Stars: ✭ 48 (+140%)
Mutual labels:  class-activation-maps
wideresnet-tensorlayer
Wide Residual Networks implemented in TensorLayer and TensorFlow.
Stars: ✭ 44 (+120%)
Mutual labels:  resnet
resnet.torch
an updated version of fb.resnet.torch with many changes.
Stars: ✭ 35 (+75%)
Mutual labels:  resnet
flexible-yolov5
More readable and flexible yolov5 with more backbone(resnet, shufflenet, moblienet, efficientnet, hrnet, swin-transformer) and (cbam,dcn and so on), and tensorrt
Stars: ✭ 282 (+1310%)
Mutual labels:  resnet
CBAM-tensorflow-slim
CBAM implementation on TensorFlow Slim
Stars: ✭ 104 (+420%)
Mutual labels:  resnet
pytorch2keras
PyTorch to Keras model convertor
Stars: ✭ 788 (+3840%)
Mutual labels:  resnet
Gradient-Samples
Samples for TensorFlow binding for .NET by Lost Tech
Stars: ✭ 53 (+165%)
Mutual labels:  resnet
i3d-tensorflow
Inflated 3D ConvNets for video understanding
Stars: ✭ 46 (+130%)
Mutual labels:  resnet
CNN Architectures
Keras Implementation of major CNN architectures
Stars: ✭ 15 (-25%)
Mutual labels:  resnet-50

Class-Activation-Mappings

Chainer implementation of Learning Deep Features for Discriminative Localization

This implementation uses ResNet50 architecture to infer the class activations. Image

Class activation maps are a simple technique to get the discriminative image regions used by a CNN to identify a specific class in the image. In other words, a class activation map (CAM) lets us see which regions in the image were relevant to this class. The authors of the paper show that this also allows re-using classifiers for getting good localization results, even when training without bounding box coordinates data. This also shows how deep learning networks already have some kind of a built in attention mechanism.This should be useful for debugging the decision process in classification networks.

Image

Dependencies

To run

Trained Chainer model for ResNet50 is stored in model. To test,

python main.py -i <path-to-image>
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].