Skip to main content

Pytorch Feature Map Extractor

Project description

MapExtrakt

Convolutional Nerual Networks Are Beautiful

We all take our eyes for granted, we glance at an object for an instant and our brains identify objects with ease. However distorted this information may be, we do a pretty good job at it.

Low light, obscured vision, there are a myriad of situations where conditions are poor but still we manage to understand what an object it. Context helps, but we were created with sight in mind.

Computers have a harder time, but modern advances with Convolutional Neural Networks are making this task a reality and have now surpassed human level accuracy.

Computers are beautifull, Convolutional Neural Networks are beautifull. And the maps they create to determine what makes a cat a cat are beautiful.

MapExtrakt makes viewing feature maps a breeze.

# load a model 
import torchvision
model = torchvision.models.vgg16(pretrained=True)

#import FeatureExtractor
from MapExtrakt import FeatureExtractor

#load the model and image
fe = FeatureExtractor(model)
fe.set_image("cat.jpg")

#gather maps
img = fe.display_from_map(layer_no=2, out_type="pil", colourize=20, outsize=(1000,500), border=0.03, picture_in_picture=True)
img.save("example_output.jpg")
img

Example Output

View Layers At a Time

#gather maps
img = fe.display_from_map(layer_no=2, out_type="pil", colourize=20, outsize=(1000,500), border=0.03, picture_in_picture=False)
img.save("example_output.jpg")
img

Example Output

Export Cells Of Each Layer To Video

#gather maps
fe.write_video(out_size=(1000,500), file_name="output.mp4", colourize=20,
               border=0.03, fps=60, frames_per_cell=1, fade_frames_between_cells=6,
               write_text=True, picture_in_picture=True)
MapExtrakt

Installation

Is as easy as pie

pip install mapextrakt

or build from source in terminal

git clone https://github.com/lewis-morris/mapextrackt
cd mapextrackt
pip install -e .

More Examples

Why not view the jupyter notebook with more examples of usage.

Examples

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

mapextrackt-0.1-py3.7.egg (13.7 kB view hashes)

Uploaded Source

mapextrackt-0.1-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page