Howtos for The Rest of Us

Backup

Backup

AI models are large - often 2–15 GB each - and re-downloading them is slow. A solid backup plan saves hours.

What to Back Up

What Not to Back Up

Storage Tips

Keep 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.

Backup Strategy

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.