guoyb0 commited on
Commit
2ee7771
·
verified ·
1 Parent(s): 38f9b59

Add online upload status note

Browse files
Files changed (1) hide show
  1. ONLINE_UPLOAD_STATUS.md +67 -0
ONLINE_UPLOAD_STATUS.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Atlas-online Upload Status
2
+
3
+ ## Current Status
4
+ - Main repository `Atlas-online` is uploaded.
5
+ - Asset repository `Atlas-online-assets` contains the online-path core artifacts.
6
+ - Raw datasets and regenerable `data/*.json` are intentionally excluded.
7
+ - `precomputed_*` and full `envs/` are no longer target assets.
8
+
9
+ ## Confirmed Uploaded Assets
10
+ - `pretrained/vicuna-7b-v1.5/**`
11
+ - `pretrained/streampetr/streampetr_eva02_ep24.pth`
12
+ - `pretrained/eva02_L_coco_det_sys_o365_remapped.pth`
13
+ - `pretrained/eva02_L_coco_det_sys_o365_remapped_fixed.pth`
14
+ - `work_dirs/topomlp_atlas_aligned/**`
15
+
16
+ ## Main Repository Contents
17
+ - Core code: `src/`, `train_atlas.py`, `eval_atlas.py`
18
+ - Scripts: `scripts/`
19
+ - Configs and docs: `configs/`, `README.md`, `2405.18361v1.pdf`
20
+ - Runtime snapshots: `work_dirs/atlas_no_caption_online/args.json`, `work_dirs/atlas_no_caption_online/train.log`
21
+ - External source snapshots: `external/`
22
+ - Logs: `logs/`
23
+ - License note: `data/LICENSE`
24
+
25
+ ## Environment Rebuild Notes
26
+ For future machine migration, rebuild environments instead of relying on uploaded `envs/`.
27
+
28
+ ### StreamPETR-side environment
29
+ Observed current key versions from the local environment:
30
+ - Python `3.8.20`
31
+ - `torch 2.0.1+cu118`
32
+ - `torchvision 0.15.2+cu118`
33
+ - `torchaudio 2.0.2+cu118`
34
+ - `mmcv 1.7.2`
35
+ - `mmdet 2.28.2`
36
+ - `mmseg 0.30.0`
37
+ - `mmdet3d 1.0.0rc6`
38
+ - `deepspeed 0.12.6`
39
+ - `transformers 4.37.2`
40
+ - `peft 0.7.1`
41
+
42
+ ### TopoMLP/OpenLane-side environment
43
+ Observed current key versions from the local environment:
44
+ - Python `3.8.20`
45
+ - `torch 2.0.1+cu118`
46
+ - `torchvision 0.15.2+cu118`
47
+ - `mmcv 1.7.2`
48
+ - `mmdet 2.26.0`
49
+ - `openlanev2` import path present in codebase, but environment reconstruction should follow repo-side dependency notes carefully.
50
+
51
+ ### Reconstruction references
52
+ Use these repository files as the primary rebuild references:
53
+ - `README.md`
54
+ - `configs/REPRODUCTION.md`
55
+ - `scripts/train_no_caption_baseline.sh`
56
+ - `eval_atlas.py`
57
+
58
+ Local installation traces existed in:
59
+ - `envs/streampetr/conda-meta/history`
60
+ - `envs/topomlp/conda-meta/history`
61
+ - `envs/sp.log`
62
+ - `envs/tp.log`
63
+
64
+ These traces were used to summarize the environment, but full `envs/` is not part of the final online-path backup plan.
65
+
66
+ ## Remaining Cleanup
67
+ - Remove accidentally uploaded partial `envs/` residue from `Atlas-online-assets` once no other commit is in progress on that repository.