MultiClaw-MLFlow is AIML Solutions’ model lifecycle and experiment governance lane.
It gives MultiClaw teams a reproducible system for training, evaluating, registering, and auditing models across quant and agentic workflows.
- Runs MLflow tracking + model registry
- Stores metadata in Postgres and artifacts in MinIO (S3-compatible)
- Provides baseline PyTorch + HF tracked experiment flow
- Defines architecture and runbook standards for expansion
mlflow-db,mlflow-minio,mlflow-trackingstack validated- Tracking UI available at
http://localhost:5000 - Artifact bucket
mlflow-artifactsverified - Sample training run completed with logged metrics + artifacts
cd infra
cp .env.example .env
docker compose up -d
MLFLOW_TRACKING_URI=http://127.0.0.1:5000 \
MLFLOW_S3_ENDPOINT_URL=http://127.0.0.1:9000 \
AWS_ACCESS_KEY_ID=minio \
AWS_SECRET_ACCESS_KEY=minio_dev_change_me \
python3 services/training/sample_mlflow_hf_torch_run.pySee CONTRIBUTING.md.
MIT — see LICENSE.