🔒 Privacy-First Architecture
Your data never leaves your machine. Perfect for medical, pharma, and defense applications. HIPAA-compliant, air-gapped deployments supported.
Train, annotate, and deploy CV models on your infrastructure. Version datasets like code. Zero cloud costs.
# Install
pip install modelcub
# Initialize project
modelcub project init my-project
cd my-project
# Import dataset
modelcub dataset add --source ./data --name v1
# Launch UI
modelcub uiCloud platforms lock you in: Roboflow charges $500-$8k/month. Your data lives on their servers. Switching is painful.
DIY is fragmented: Label Studio + Ultralytics + custom scripts = integration hell. No version control. Hard to reproduce.
Privacy is compromised: Medical imaging, defense projects, and proprietary data can't use cloud platforms.
ModelCub gives you a professional, integrated platform that runs entirely on your infrastructure:
| ModelCub | Roboflow | Label Studio + Ultralytics | |
|---|---|---|---|
| Cost | Free | $500-8k/mo | Free |
| Runs Locally | ✅ | ❌ | ✅ |
| Annotation | ✅ | ✅ | ✅ |
| Training | ✅ | ✅ | ✅ |
| Version Control | ✅ | Limited | ❌ |
| Integrated | ✅ | ✅ | ❌ |
| Setup Time | 2 min | 5 min | 30+ min |
from modelcub import Project, Dataset
# Initialize project
project = Project.init("my-project")
# Import dataset
dataset = Dataset.from_yolo("./data", name="v1")
# Get statistics
print(f"Images: {dataset.num_images}")
print(f"Classes: {dataset.classes}")
# Access splits
train_images = dataset.splits['train'].images
print(f"Training images: {len(train_images)}")HIPAA-compliant, on-premise training. Your patient data never leaves your servers. Perfect for hospitals and research institutions.
Save $96k/year in cloud costs. Use that budget to hire engineers instead of paying SaaS fees.
Reproducible experiments with full audit trails. Version datasets alongside code. Perfect for academic papers.
Air-gapped deployments. Zero external dependencies. Complete control over your data and infrastructure.
ModelCub is built on clean, layered architecture:
┌─────────────────────────────────┐
│ CLI │ SDK │ Web UI │
├─────────────────────────────────┤
│ FastAPI Backend │
├─────────────────────────────────┤
│ Core Services │
├─────────────────────────────────┤
│ File System State │
│ (.modelcub directory) │
└─────────────────────────────────┘Key Principles:
# Install
pip install modelcub
# Verify
modelcub --version
# Create your first project
modelcub project init demo-projectRead the Installation Guide or jump to the Quick Start.
ModelCub • MIT License • GitHub • Documentation