How To Guides
Installation
This project uses uv for dependency management. Make sure you have Python 3.12+ installed.
# Install using uv
uv add icicle-playgrounds
# Or install from source
git clone <repository-url>
cd icicle-playgrounds
uv sync
Quick Start
from icicle_playgrounds.pydantic.plug_n_play import Image, Tensor, DetectionResults
from icicle_playgrounds.pydantic.patra_model_cards import PatraModelCard
# Work with images and tensors
image = Image(...)
tensor = Tensor(...)
# Handle detection results
results = DetectionResults(...)
# Create model cards
model_card = PatraModelCard(...)