← Backup
AI models are large - often 2–15 GB each - and re-downloading them is slow. A solid backup plan saves hours.
.safetensors, .bin, .pt) - irreplaceable or time-consuming to re-downloadvenv/) - recreate with pip install -r requirements.txtKeep models on a separate drive:
D:\AI_VAULT\models\
├── llm\ ← 10–50 GB each
├── diffusion\ ← 2–7 GB each
└── embeddings\ ← smaller
Avoid syncing AI_VAULT with OneDrive, Dropbox, or Google Drive - they’ll choke on multi-GB model files and may corrupt them.
For models:
For configs:
Quick backup script (PowerShell):
robocopy D:\AI_VAULT F:\backup\AI_VAULT /MIR /R:2 /W:5
/MIR mirrors the folder structure. /R:2 /W:5 retries twice with a 5-second wait.