exptech commited on
Commit
e6d1dc8
Β·
verified Β·
1 Parent(s): 8ada5c8

Pagination, preview-to-WASM swap, trained clips first

Browse files
CLAUDE.md CHANGED
@@ -47,13 +47,19 @@
47
  | #2173 | 9:36 AM | πŸ”΄ | Fixed lazy loading for policy viewer iframes | ~279 |
48
  | #2172 | " | 🟣 | Added embedded viewer iframe support for policy stage clips with ONNX models | ~348 |
49
  | #2169 | 1:59 AM | πŸ”„ | Asset Loading Refactored for Space-Relative URLs | ~345 |
50
- | #2168 | 1:57 AM | 🟣 | ONNX Policy Detection in Data Generation | ~343 |
51
- | #2167 | 1:56 AM | 🟣 | Added policy viewer link to clip cards | ~326 |
52
- | #2166 | 1:54 AM | 🟣 | Created policy viewer HTML page for interactive 3D visualization | ~394 |
53
 
54
  ### Mar 8, 2026
55
 
56
  | ID | Time | T | Title | Read |
57
  |----|------|---|-------|------|
 
 
 
 
 
 
 
 
 
58
  | #2412 | 12:00 AM | βœ… | Reordered sections and updated edition label in showcase page | ~259 |
59
  </claude-mem-context>
 
47
  | #2173 | 9:36 AM | πŸ”΄ | Fixed lazy loading for policy viewer iframes | ~279 |
48
  | #2172 | " | 🟣 | Added embedded viewer iframe support for policy stage clips with ONNX models | ~348 |
49
  | #2169 | 1:59 AM | πŸ”„ | Asset Loading Refactored for Space-Relative URLs | ~345 |
 
 
 
50
 
51
  ### Mar 8, 2026
52
 
53
  | ID | Time | T | Title | Read |
54
  |----|------|---|-------|------|
55
+ | #2453 | 12:31 AM | 🟣 | Added iframe ready notification via postMessage | ~292 |
56
+ | #2452 | 12:29 AM | 🟣 | Implemented progressive loading with preview-to-viewer swap in mobile carousel | ~385 |
57
+ | #2449 | " | 🟣 | Added CSS transitions for preview-to-WASM viewer swap | ~305 |
58
+ | #2448 | " | 🟣 | Progressive WASM Viewer Loading with Preview Fallback | ~294 |
59
+ | #2439 | 12:16 AM | βœ… | Added photo for Mike Gassaway credit card | ~297 |
60
+ | #2438 | " | βœ… | Updated credits to display Mike's profile photo instead of initials | ~230 |
61
+ | #2436 | 12:15 AM | βœ… | Added profile image for Molly Maguire in credits section | ~303 |
62
+ | #2428 | 12:10 AM | βœ… | Regenerated data.json with updated clip and policy counts | ~261 |
63
+ | #2413 | 12:02 AM | βœ… | Logo filter styling removed | ~184 |
64
  | #2412 | 12:00 AM | βœ… | Reordered sections and updated edition label in showcase page | ~259 |
65
  </claude-mem-context>
credits/CLAUDE.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <claude-mem-context>
2
+ # Recent Activity
3
+
4
+ <!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
5
+
6
+ ### Mar 8, 2026
7
+
8
+ | ID | Time | T | Title | Read |
9
+ |----|------|---|-------|------|
10
+ | #2440 | 12:18 AM | βœ… | Updated Mike credit photo with recentering adjustment | ~211 |
11
+ | #2437 | 12:16 AM | βœ… | Processed contributor credit photo for web display | ~278 |
12
+ | #2421 | 12:05 AM | βœ… | Downloaded performer headshot candidates for credits section | ~265 |
13
+ | #2420 | " | βœ… | Downloaded Jasmine candidate profile images | ~191 |
14
+ | #2419 | 12:04 AM | βœ… | Added profile photo for Mitch in credits section | ~213 |
15
+ | #2418 | " | πŸ”΅ | Read Joe DiPrima credit photo | ~231 |
16
+ </claude-mem-context>
credits/g1-moves/space/CLAUDE.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <claude-mem-context>
2
+ # Recent Activity
3
+
4
+ <!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
5
+
6
+ *No recent activity*
7
+ </claude-mem-context>
generate_data.py CHANGED
@@ -108,13 +108,14 @@ def main():
108
  if media:
109
  stages[stage] = media
110
 
111
- has_policy = "policy" in stages
112
- if has_policy:
113
- stats["policies"] += 1
114
-
115
- # Check for ONNX policy file
116
  onnx_path = repo / cat / clip_id / "policy" / f"{clip_id}_policy.onnx"
 
117
  has_onnx = onnx_path.exists()
 
 
 
 
118
 
119
  subtitle = KARATE_SUBTITLES.get(clip_id)
120
  display_name = format_display_name(clip_id)
 
108
  if media:
109
  stages[stage] = media
110
 
111
+ # Check for ONNX and PT policy files
 
 
 
 
112
  onnx_path = repo / cat / clip_id / "policy" / f"{clip_id}_policy.onnx"
113
+ pt_path = repo / cat / clip_id / "policy" / f"{clip_id}_policy.pt"
114
  has_onnx = onnx_path.exists()
115
+ has_pt = pt_path.exists()
116
+ has_policy = "policy" in stages or has_onnx or has_pt
117
+ if has_policy:
118
+ stats["policies"] += 1
119
 
120
  subtitle = KARATE_SUBTITLES.get(clip_id)
121
  display_name = format_display_name(clip_id)
space/credits/CLAUDE.md ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <claude-mem-context>
2
+ # Recent Activity
3
+
4
+ <!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
5
+
6
+ *No recent activity*
7
+ </claude-mem-context>