diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-27 18:43:57 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-07-27 18:43:57 -0500 |
| commit | d11c73cf9bb5615c753562a156727831a8fd20ea (patch) | |
| tree | 40df8c182f5a021cf745532e15f2f56ba9bb37bb /README.md | |
| parent | e65dd2e2460b1da48c83a930304cf9b269fc4447 (diff) | |
Synchronize research data with Git LFSagent/data-sync
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -26,8 +26,9 @@ FA and DFA; finite-time analysis and experiments focus on FA. Target venue: (runs). `notes/README.md` indexes all 43 notes with status. - `scripts/` — all experiments (python, float64, CPU; deterministic seeds). `scripts/README.md` has the status table and recipes. -- `outputs/` — gitignored, regenerable. Paper-grade runs are exactly those in - `notes/40_reproduction_manifest.md`; the rest is exploratory history. +- `data/` and `outputs/` — synchronized through Git LFS. Paper-grade runs are + exactly those in `notes/40_reproduction_manifest.md`; the rest is + exploratory history. - `paper/` — AAAI-27 scaffolding (`main.tex` needs AuthorKit 27; `preview.tex` compiles standalone via tectonic). `body.tex` is being rewritten from the evidence ledger. @@ -38,3 +39,21 @@ FA and DFA; finite-time analysis and experiments focus on FA. Target venue: pip install -r requirements.txt # numpy scipy matplotlib torch (+ torchvision for MNIST) python scripts/real_data_validation.py --self-test # sanity: kernels vs autograd ``` + +## Synchronizing data and experiment outputs + +Install Git LFS once on each machine, then pull the repository and its data: + +```bash +git lfs install +git pull +git lfs pull +``` + +After producing new data or results, publish a new snapshot with: + +```bash +git add data outputs +git commit -m "Update experiment data" +git push +``` |
