Metadata-Version: 2.4
Name: turbo_pixel_loader
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Summary: High-performance AI data loader written in Rust
Author-email: Sujal Kothale <24kothales@rbunagpur.in>
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Green AI 🚀

**The World's Fastest Image Loader for PyTorch & TensorFlow.**

[![PyPI version](https://badge.fury.io/py/green-ai.svg)](https://badge.fury.io/py/green-ai)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## The Problem
Your GPUs are starving. Standard Python `DataLoader` pipelines are single-threaded and fight against the GIL (Global Interpreter Lock). While your H100 waits for data, you burn money.

## The Solution
**Green AI** is a high-performance ingestion engine written in Rust. It bypasses Python's overhead to load, decode, and batch images in parallel, delivering them to your model via Zero-Copy memory transfer.

### ⚡ Performance Benchmark (1,000 Images)

| Loader | Time | Speed | Status |
| :--- | :--- | :--- | :--- |
| **Standard Python (PIL)** | 17.48s | 57 img/sec | 🐢 Slow |
| **Green AI (Rust)** | **1.22s** | **819 img/sec** | 🚀 **14.3x Faster** |

*(Benchmarks run on local dataset, 512x512 RGB JPEGs)*

## 📦 Installation

```bash
pip install green-ai
