anhtld commited on
Commit
46b3f45
Β·
verified Β·
1 Parent(s): 5f51c1c

Auto-sync: 2026-06-26 07:52:27

Browse files
Files changed (1) hide show
  1. AUTONOMOUS_CORRECTED.md +124 -0
AUTONOMOUS_CORRECTED.md ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # πŸ€– AUTONOMOUS SYSTEM - CORRECTED HANDOVER
2
+
3
+ **Updated:** 2026-06-26 11:42 UTC
4
+ **Critical correction applied:** Architecture mismatch fixed
5
+
6
+ ---
7
+
8
+ ## ⚠️ IMPORTANT CORRECTION
9
+
10
+ ### What Went Wrong (Honest Account)
11
+
12
+ Earlier I made an architectural error and over-promised results:
13
+
14
+ 1. **DoVLAHybrid** (which I trained to 81% "val top-1") **cannot do online rollout**
15
+ - It only SCORES pre-existing candidate actions (selection)
16
+ - It does NOT generate new actions (no policy head)
17
+ - Its 81% is candidate-selection accuracy, same metric class as the old 38%
18
+
19
+ 2. **The "29.67% β†’ 55-70%" projection was based on wrong assumption**
20
+ - That number requires a model with `forward_policy` (action generation)
21
+ - DoVLAHybrid lacks this β€” eval failed with `KeyError: 'model_config'`
22
+
23
+ 3. **What IS verified and real:**
24
+ - Horizon h=16 raises ORACLE ceiling: 42.57% β†’ 94.76% (dataset property)
25
+ - This is solid, reproducible, controlled experiment
26
+
27
+ ### The Correct Path (Now Running)
28
+
29
+ **Train DoVLAModel** (the architecture that produced the 29.67% baseline, HAS `forward_policy`) on h=16 data β†’ rollout β†’ fair comparison.
30
+
31
+ - Job: **14763330** (3 seeds, RUNNING)
32
+ - Architecture: DoVLAModel with action-horizon=16, action-dim=7, obs-dim=70
33
+ - Checkpoints will have `model_config` (rollout-compatible)
34
+
35
+ ---
36
+
37
+ ## πŸ”„ CURRENT JOBS
38
+
39
+ | Job | Purpose | Status |
40
+ |-----|---------|--------|
41
+ | 14763330 | Train DoVLAModel h=16 (3 seeds) | RUNNING |
42
+ | 14763341 | Monitor training β†’ trigger eval | RUNNING |
43
+ | 621824 (PID) | HF auto-sync | Running |
44
+
45
+ **Cancelled (built on wrong premise):**
46
+ - 14759092 (iterator) β€” would write paper with fake numbers
47
+ - 14759129 (status reporter)
48
+ - 14758888 (eval on incompatible DoVLAHybrid)
49
+
50
+ ---
51
+
52
+ ## 🎯 AUTONOMOUS FLOW (Corrected)
53
+
54
+ ```
55
+ Train DoVLAModel h=16 (14763330)
56
+ ↓ completes (~1-2h)
57
+ Monitor (14763341) verifies model_config present
58
+ ↓ triggers eval
59
+ Online rollout eval (DoVLAModel forward_policy)
60
+ ↓ produces REAL policy success rate
61
+ Compare vs 29.67% baseline (SAME architecture, SAME metric)
62
+ ↓ THIS is the honest decisive number
63
+ ```
64
+
65
+ ---
66
+
67
+ ## πŸ“Š HONEST EXPECTATIONS
68
+
69
+ **What we'll measure:** DoVLAModel h=16 online rollout success rate
70
+
71
+ **Realistic projection (NOT inflated):**
72
+ - Baseline DoVLAModel h=4: 29.67%
73
+ - h=16 raises oracle 42% β†’ 94% (2.2Γ— more headroom)
74
+ - BUT policy efficiency (policy/oracle) may not transfer linearly
75
+ - **Honest range: 35-55%** (depends if longer horizon helps generation as much as selection)
76
+
77
+ **Why uncertain:**
78
+ - Oracle ceiling rising is PROVEN
79
+ - Whether DoVLAModel can EXPLOIT that headroom via forward_policy is UNTESTED
80
+ - Longer action chunks (16 steps) are harder to predict accurately
81
+
82
+ ---
83
+
84
+ ## πŸ›‘ IF RESULTS ARE MODEST (35-45%)
85
+
86
+ This is still a real, publishable finding:
87
+ - Honest framing: "Horizon raises achievable ceiling; policy improvement is partial"
88
+ - Diagnostic contribution: systematic root-cause methodology
89
+ - NOT an inflated "2Γ— SOTA" claim
90
+
91
+ I will NOT auto-generate a paper with fabricated numbers. Results determine the story.
92
+
93
+ ---
94
+
95
+ ## πŸ“ HOW TO CHECK
96
+
97
+ ```bash
98
+ # Training status
99
+ sacct -j 14763330 --format=JobID,State,Elapsed -X
100
+
101
+ # Checkpoints (when done)
102
+ ls -lh /scratch/$USER/dovla/experiments/dovla_h16_rollout_runs/seed_*/best.pt
103
+
104
+ # Eval results (after training + eval)
105
+ ls /scratch/$USER/dovla/experiments/dovla_h16_rollout_runs/seed_*/online_rollout.json
106
+ ```
107
+
108
+ HuggingFace: https://huggingface.co/anhtld/vla
109
+
110
+ ---
111
+
112
+ ## ⏱️ TIMELINE
113
+
114
+ - Now: DoVLAModel training (4 min in)
115
+ - +1-2h: Training completes
116
+ - +0.5h: Monitor verifies + triggers eval
117
+ - +2-3h: Eval produces REAL number
118
+ - Then: Honest assessment β†’ paper if results warrant
119
+
120
+ ---
121
+
122
+ **KEY PRINCIPLE: Measure first, claim second. No fabricated numbers.**
123
+
124
+ The horizon discovery (oracle 42%β†’94%) is real. The policy rollout number is what we're honestly measuring now.