Analyse · Learn · Ingest · Curate · Export
All-in-one AI-powered image annotation, training, and dataset management toolkit.
Works on both NVIDIA GPU and CPU.
ALICE automatically detects your hardware — if no compatible GPU is found, it falls back to CPU mode. No manual configuration needed.
I needed a tool to train a YOLO model for my cameras, using my own images, with the specific angles and scenarios around my house. I couldn't find anything on the internet (or if it existed, I was probably too drunk to find it), so I built my own utility to fit my needs. If you find it useful — enjoy. If not, well... cry me a river! :)
# Build and set up virtual environment
python3 builder.py
# Run
./alice.pyThe builder assembles alice.py from source modules, creates a .venv with base dependencies, and patches the shebang so ./alice.py uses the venv automatically. On Debian/Ubuntu, the builder will auto-install python3-venv if missing.
On first run, a welcome page guides you through initial setup — hardware detection, model download, and dependency installation. Open http://localhost:8080 and follow the steps.
# Options
./alice.py --port 9090 # custom port
./alice.py --conf /path/to/alice.conf # custom config pathpython3 builder.py --no-venvThe builder generates docker-compose.yml automatically, depending on your configured hardware (GPU or CPU).
Edit the volume paths to match your Frigate setup, then:
docker compose up --build -dSee Docker Setup below for details.
Browse and annotate YOLO bounding boxes with a full canvas editor — draw, resize, move, delete, undo. Filter by split (train / val / empty) or by class. Gallery grid view, keyboard shortcuts, right-click context menus.
Gallery grid view with thumbnail previews, split badges, and box counts. Dataset statistics panel shows total images, train/val distribution, annotation coverage, and class distribution.
Perceptual hashing (pHash) with DCT-based 64-bit hashes. Multiprocessing-accelerated computation. Side-by-side comparison. Box-similarity dedup per camera. NMS cleanup for overlapping same-class boxes.
Browse Frigate NVR event snapshots in real-time. Filter by camera and time window. Transfer snapshots directly into your training dataset with automatic WebP → JPG conversion.
Frame-by-frame analysis of Frigate video exports. Seekbar, step controls, adjustable playback FPS. Automated frame scanner with AI detection for batch export.
Run YOLO inference on any image across all three modes. Merge detected boxes into annotations (dedup by IoU > 0.5). Preview mode shows detections without saving. Live detection auto-runs as you navigate.
Five-step pipeline — each step toggleable, runnable individually or as a sequence:
| Step | What it does |
|---|---|
| 1. Export | Extract newest snapshots from Frigate DB with round-robin camera distribution → 90/10 train/val split |
| 2. Dedup | Remove duplicates via pHash, box similarity, and NMS cleanup |
| 3. Annotate | Auto-label all images using a teacher model |
| 4. Train | Fine-tune student model with real-time metrics (loss, mAP50, mAP50-95) |
| 5. Export ONNX | Convert to ONNX for deployment (FP16 or FP32 on GPU, FP32 only on CPU) |
All steps log to the Logs tab with COMPLETED / FAILED / STOPPED status.
ALICE automatically detects your hardware at startup and adapts accordingly:
| NVIDIA GPU | CPU | |
|---|---|---|
| Training | GPU accelerated | CPU (slower) |
| Inference | GPU | CPU |
| ONNX Export | FP16 + FP32 | FP32 only |
| PyTorch | CUDA build | CPU build |
| onnxruntime | onnxruntime-gpu |
onnxruntime |
Configure from Settings → System → Device (Auto / NVIDIA GPU / CPU). The sidebar and Device tab show live hardware stats.
All configuration in alice.conf — editable from the web UI or directly in the file. Built-in dependency checker with one-click install. Model downloader for YOLO11 and YOLOv8 variants.
Paths![]() |
AI Models![]() |
Training![]() |
System & Dependencies![]() |
Python 3.8+ required. The builder creates a .venv and installs the base dependency (Pillow) automatically. All other dependencies are managed by ALICE and can be installed from the welcome page or Settings → System with one click:
| Package | Purpose |
|---|---|
| Pillow | Image processing, pHash, format conversion (auto-installed by builder) |
| NumPy | Numerical operations for dedup |
| inotify | Filesystem watching on Linux (falls back to polling) |
| opencv-python-headless | Video frame extraction |
| ONNX | ONNX model format for export |
| onnxslim | ONNX model optimization |
| onnxruntime | ONNX Runtime — GPU or CPU variant auto-selected |
| PyTorch | Deep learning framework — CUDA or CPU variant auto-selected |
| ultralytics | YOLO model training & inference |
ALICE installs the correct PyTorch variant (CUDA or CPU) based on detected hardware. No manual torch installation needed.
Note: ALICE does not install NVIDIA drivers or CUDA. If you want GPU-accelerated training, install the NVIDIA drivers and CUDA toolkit on your system before running ALICE.
The builder generates docker-compose.yml with GPU support auto-detected from your host:
python3 builder.py --no-venvThis creates docker-compose.yml with the NVIDIA GPU block included if a GPU is detected, or CPU-only otherwise.
Edit the volume paths to match your setup:
volumes:
- ./alice.conf:/app/alice.conf
- /path/to/datasets:/app/datasets
- /path/to/models:/app/models
- /path/to/frigate/clips:/app/clips:ro
- /path/to/frigate/exports:/app/exports:ro
- /path/to/frigate/frigate.db:/app/frigate.db:roImportant: The
frigate.dbvolume must point to the actual file, not a directory. If the file doesn't exist on the host at the time of container creation, Docker will create a directory instead and ALICE won't be able to open the database.
Then start:
docker compose up --build -dOn first run, open ALICE in your browser and install dependencies from the welcome page or Settings → System. Dependencies are persisted in a Docker volume across container restarts.
Note: GPU support in Docker requires NVIDIA Container Toolkit on the host. If running the builder on a machine without GPU, the generated compose file will be CPU-only.
Alice expects standard YOLO format:
dataset/
├── images/
│ ├── train/*.jpg
│ └── val/*.jpg
├── labels/
│ ├── train/*.txt
│ └── val/*.txt
└── dataset.yaml ← auto-generated by trainer
Alice is developed as modular source files assembled into a single alice.py:
python3 builder.py # → alice.py + .venv/ + docker-compose.yml
python3 builder.py -o /path/to/out.py # custom output path
python3 builder.py --no-venv # skip venv creation (for Docker)
python3 builder.py --check # verify all modules and assets exist
python3 builder.py --list # show resolved dependency order
python3 builder.py --strict # abort on name conflictsThe builder:
- Reads the import graph from
from .module importstatements in eachsrc/*.py - Topologically sorts modules by dependency order
- Strips all relative imports (redundant in the flat monolith namespace)
- Injects CSS, JS, and HTML assets from
src/assets/into placeholder tokens - Writes a single self-contained
alice.py - Creates a
.venvwith Pillow and patches the shebang (auto-installspython3-venvif missing) - Generates
docker-compose.ymlwith GPU support auto-detected
Re-running builder.py rebuilds alice.py and regenerates docker-compose.yml, but skips venv creation if .venv already exists.
Source modules live in src/ — see CONTRIBUTING.md for development workflow.
| Key | Action |
|---|---|
← → |
Navigate images |
D |
Delete selected box |
P |
Set to Person class |
A |
AI Analyse (save) |
M |
Copy/Move dialog |
E |
Toggle panel |
G |
Gallery view |
J |
Jump to image # |
Ctrl+Z |
Undo |
Ctrl+Scroll |
Zoom |
Space |
Play/pause (video) |
If you find ALICE useful, you can buy me a coffee:
Need help or want to chat? Join Alice Discord:
PolyForm Noncommercial 1.0.0 — free for personal, non-commercial use. For commercial licensing, contact alice@it-link.net.
Simon Cirstoiu








