Skip to content

A teeny tiny set of ImageNet-like images for testing pipelines

Notifications You must be signed in to change notification settings

shreyashankar/imagenet-stubs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

ImageNet Stubs

A tiny set of ImageNet-like images for testing pipelines

All images are licensed with Creative Commons and were found on flickr.com

Usage

Install the python module

pip install git+https://github.com/nottombrown/imagenet_stubs

The module includes all the images. You can ask it for their paths

import imagenet_stubs
import PIL.Image
import matplotlib.pyplot as plt

for image_path in imagenet_stubs.get_image_paths():
    im = PIL.Image.open(image_path)
    plt.axis('off')
    plt.imshow(im, interpolation="nearest")
    plt.show()

Wishlist

  • Include easy accessor for labels for each image
  • Add additional images (up to 128)

About

A teeny tiny set of ImageNet-like images for testing pipelines

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%