Upload RESTORE.md with huggingface_hub
Browse files- RESTORE.md +13 -0
RESTORE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# VM backup — 2026-07-07
|
| 2 |
+
Two private HF datasets:
|
| 3 |
+
- **Datasearch/mas-vm-backup** — /datadrive/mas (benchmark audits, compare_results traces, codex_tmp working repos, codex_audit, MAS-benchmarking/URI-data/leaderboard-generator working copies, codex homes) + docker_images/ (docker-save tarballs).
|
| 4 |
+
- **Datasearch/mra-data-backup** — /datadrive/multiagent_repo_analysis (pipeline1 data: scratch per-repo workdirs+adapters, docker_cache, repo_audit_cache, scrubbed_repos, sealed/native runs, manifests).
|
| 5 |
+
|
| 6 |
+
## Restore
|
| 7 |
+
hf download <repo> --repo-type dataset --local-dir ./bk
|
| 8 |
+
cat bk/chunks/<name>/<name>.tar.zst.part_* | zstd -d | tar -x # multi-part
|
| 9 |
+
zstd -d < bk/chunks/<name>/<name>.tar.zst | tar -x # single-part
|
| 10 |
+
docker load < bk/docker_images/<img>.tar.gz
|
| 11 |
+
|
| 12 |
+
## Excluded (regenerable caches + secrets)
|
| 13 |
+
pip/uv/conda/venv/hf_cache/xdg caches; anthropic_key.txt, gateway_keys.txt, codex auth.json, URI-data git PAT.
|