EXOKERN1 commited on
Commit
e6178a4
·
verified ·
1 Parent(s): 63bf94e

Update README card

Browse files
Files changed (1) hide show
  1. README.md +23 -3
README.md CHANGED
@@ -3,6 +3,7 @@ pretty_name: "EXOKERN Skill v0.1.1 - Robust Peg Insertion Under Domain Randomiza
3
  license: cc-by-nc-4.0
4
  pipeline_tag: robotics
5
  library_name: pytorch
 
6
  tags:
7
  - robotics
8
  - diffusion-policy
@@ -52,6 +53,8 @@ model-index:
52
 
53
  This release should be read as a robustness benchmark first. Both policies remain successful under severe domain randomization, and the repo is valuable precisely because it makes the mixed result on force reduction explicit.
54
 
 
 
55
  ## Quick Facts
56
 
57
  | Item | Value |
@@ -71,7 +74,7 @@ This release should be read as a robustness benchmark first. Both policies remai
71
 
72
  The Hub metadata for this repo tracks the primary `full_ft` checkpoint. The full repo includes the paired `no_ft` ablation for comparison.
73
 
74
- | Checkpoint | Success Rate | Avg Contact Force (N) | Peak Force (N) | Avg Episode Time (s) |
75
  | --- | ---: | ---: | ---: | ---: |
76
  | `full_ft` | 100.0 | 3.67 +/- 0.45 | 10.63 | 25.63 |
77
  | `no_ft` | 100.0 | 3.37 +/- 0.06 | 10.33 | 25.73 |
@@ -107,7 +110,7 @@ Interpretation:
107
 
108
  This release uses the same 1D Temporal U-Net diffusion policy family as v0.
109
 
110
- ![Architecture](architecture.png)
111
 
112
  | Component | Value |
113
  | --- | --- |
@@ -173,7 +176,6 @@ policy = DiffusionPolicyInference(
173
  device="cpu",
174
  )
175
 
176
- # full_ft expects a 22D observation vector
177
  policy.add_observation([0.0] * 22)
178
  actions = policy.get_actions()
179
  print(len(actions))
@@ -193,6 +195,24 @@ print(len(actions))
193
  | Control rate | 15 Hz |
194
  | Domain randomization | Enabled in the training dataset |
195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  ## Security Note
197
 
198
  The checkpoints in this repo are PyTorch pickles. Load them only in a trusted or isolated environment after reviewing the repository contents.
 
3
  license: cc-by-nc-4.0
4
  pipeline_tag: robotics
5
  library_name: pytorch
6
+ thumbnail: "https://huggingface.co/EXOKERN/skill-forge-peginsert-v0.1.1/resolve/main/assets/preview.png"
7
  tags:
8
  - robotics
9
  - diffusion-policy
 
53
 
54
  This release should be read as a robustness benchmark first. Both policies remain successful under severe domain randomization, and the repo is valuable precisely because it makes the mixed result on force reduction explicit.
55
 
56
+ ![EXOKERN skill v0.1.1 preview](https://huggingface.co/EXOKERN/skill-forge-peginsert-v0.1.1/resolve/main/assets/preview.png)
57
+
58
  ## Quick Facts
59
 
60
  | Item | Value |
 
74
 
75
  The Hub metadata for this repo tracks the primary `full_ft` checkpoint. The full repo includes the paired `no_ft` ablation for comparison.
76
 
77
+ | Checkpoint | Success Rate | Avg Contact Force (N) | Peak Contact Force (N) | Avg Episode Time (s) |
78
  | --- | ---: | ---: | ---: | ---: |
79
  | `full_ft` | 100.0 | 3.67 +/- 0.45 | 10.63 | 25.63 |
80
  | `no_ft` | 100.0 | 3.37 +/- 0.06 | 10.33 | 25.73 |
 
110
 
111
  This release uses the same 1D Temporal U-Net diffusion policy family as v0.
112
 
113
+ ![Architecture](https://huggingface.co/EXOKERN/skill-forge-peginsert-v0.1.1/resolve/main/architecture.png)
114
 
115
  | Component | Value |
116
  | --- | --- |
 
176
  device="cpu",
177
  )
178
 
 
179
  policy.add_observation([0.0] * 22)
180
  actions = policy.get_actions()
181
  print(len(actions))
 
195
  | Control rate | 15 Hz |
196
  | Domain randomization | Enabled in the training dataset |
197
 
198
+ ## Related Work
199
+
200
+ - FORGE: [Force-Guided Exploration for Robust Contact-Rich Manipulation under Uncertainty](https://arxiv.org/abs/2408.04587)
201
+ - Diffusion Policy: [Visuomotor Policy Learning via Action Diffusion](https://arxiv.org/abs/2303.04137)
202
+ - Factory: [Fast Contact for Robotic Assembly](https://arxiv.org/abs/2205.03532)
203
+
204
+ ## Citation
205
+
206
+ ```bibtex
207
+ @misc{exokern_skill_peginsert_v011_2026,
208
+ title = {EXOKERN Skill v0.1.1: Robust Peg Insertion Under Domain Randomization},
209
+ author = {{EXOKERN}},
210
+ year = {2026},
211
+ howpublished = {\url{https://huggingface.co/EXOKERN/skill-forge-peginsert-v0.1.1}},
212
+ note = {Paired full_ft and no_ft diffusion-policy checkpoints}
213
+ }
214
+ ```
215
+
216
  ## Security Note
217
 
218
  The checkpoints in this repo are PyTorch pickles. Load them only in a trusted or isolated environment after reviewing the repository contents.