Skip to main content

Import binary data such as images, audio in ready to feed format for ML models with just one line of code

Project description

BinaryPipe

binarypipe provides easy pipeline to use different binary format files in different Machine Larning models.

Installation

pip install binarypipe

ImagePipe

imagepipe provides utilities to use image datasets in ML models

  • import imagepipe
from binarypipe import imagepipe as ip
  • Load single image file
# Load image
img= ip.load("path/image.jpg")

# Load in certain size
img= ip.load("path/image.jpg", size= (400, 600))
  • Load all images of folder as dataset
X, y= ip.load_dataset("folder_path/", 0)
# X= (?, width, height, channel)
# y is label 
  • Load multiple class images
X, y= ip.load_datasets("folder_path/", )

Project details


Download files

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

Source Distribution

binarypipe-0.1.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

binarypipe-0.1.1-py3-none-any.whl (4.8 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