EXOKERN1 commited on
Commit
b91a40f
·
verified ·
1 Parent(s): 4aacadc

Add V2 temporal model results to dataset card

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -198,6 +198,19 @@ We trained a Behavior Cloning (BC) policy on this dataset to ablate the impact o
198
 
199
  **Conclusion:** Both policies solve the geometric task. But the F/T-aware policy performs the insertion softly like an expert, reducing contact forces by **98.4%**. In industrial applications, this is the difference between a successful assembly and a damaged part.
200
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
  ---
202
 
203
  ## Data Collection
 
198
 
199
  **Conclusion:** Both policies solve the geometric task. But the F/T-aware policy performs the insertion softly like an expert, reducing contact forces by **98.4%**. In industrial applications, this is the difference between a successful assembly and a damaged part.
200
 
201
+ ### V2: Temporal Model (10-Frame Window)
202
+
203
+ Upgrading to a 1D-CNN that processes the last 10 frames improves overall prediction quality by 4x, and yields a 9.6% F/T advantage in offline MSE:
204
+
205
+ | Model | Condition | Val MSE | Avg Force (N) |
206
+ |-------|-----------|---------|---------------|
207
+ | V1 MLP | With F/T | 0.475 | 0.1 N |
208
+ | V1 MLP | Without F/T | 0.520 | 6.4 N |
209
+ | **V2 Temporal CNN** | **With F/T** | **0.119** | **3.0 N** |
210
+ | V2 Temporal CNN | Without F/T | 0.132 | 4.7 N |
211
+
212
+ The temporal model dramatically improves both conditions, but especially helps the blind (no-F/T) policy compensate via position/velocity trends — confirming that **direct force feedback remains irreplaceable for gentle contact control**.
213
+
214
  ---
215
 
216
  ## Data Collection