Update logbook: Repro - Solving Positive Linear Programs with Differential Privacy
Browse files- .serve.log +0 -0
- README.md +13 -5
- bucket-icon.svg +5 -0
- index.html +52 -17
- logbook.css +1602 -0
- logbook.js +2275 -0
- logbook.json +71 -0
- pages/claim-1-instance-dependent-a-max-opt-1-5-bound-improving-hsu-et-al-by-opt-0-5/page.md +451 -0
- pages/claim-2-data-independent-d-1-5-alpha-3-5-bound/page.md +447 -0
- pages/claim-3-mixed-packing-covering-bounds-theorem-2/page.md +356 -0
- pages/claim-4-truncated-softmax-and-algorithms-1-2/page.md +295 -0
- pages/claim-5-mwu-variants-for-mixed-packing-covering-algorithms-3-4/page.md +47 -0
- pages/conclusion/page.md +0 -0
- pages/index.md +14 -0
- pages/private-positive-lp-repro/page.md +19 -0
- pages/setup-and-methodology/page.md +55 -0
- trackio-logo-light.png +0 -0
- trackio-logo.png +0 -0
- trackio-wordmark-dark.png +0 -0
.serve.log
ADDED
|
File without changes
|
README.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
| 1 |
---
|
| 2 |
-
title: Repro Positive Linear Programs
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: "Repro - Solving Positive Linear Programs with Differential Privacy"
|
| 3 |
+
emoji: 🔒
|
| 4 |
+
colorFrom: yellow
|
| 5 |
+
colorTo: red
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- trackio
|
| 10 |
+
- trackio-logbook
|
| 11 |
+
- open-experiment
|
| 12 |
+
- icml2026-repro
|
| 13 |
+
- paper-zlSioMUQ2Y
|
| 14 |
---
|
| 15 |
|
| 16 |
+
# Repro - Solving Positive Linear Programs with Differential Privacy
|
| 17 |
+
|
| 18 |
+
An open experiment logbook, published with [Trackio](https://github.com/gradio-app/trackio).
|
bucket-icon.svg
ADDED
|
|
index.html
CHANGED
|
@@ -1,19 +1,54 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
| 6 |
+
<title>Repro - Solving Positive Linear Programs with Differential Privacy</title>
|
| 7 |
+
<link rel="stylesheet" href="./logbook.css" />
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div id="app">
|
| 11 |
+
<aside id="sidebar">
|
| 12 |
+
<div id="book-head">
|
| 13 |
+
<img id="book-wordmark" src="./trackio-wordmark-dark.png" alt="" />
|
| 14 |
+
<div id="book-title" class="sr-only">Logbook</div>
|
| 15 |
+
</div>
|
| 16 |
+
<nav id="tree"></nav>
|
| 17 |
+
<div id="sidebar-foot" hidden>
|
| 18 |
+
<button id="connect-btn" type="button">
|
| 19 |
+
<span class="ico">ⓘ</span> Collaborate with your agent
|
| 20 |
+
</button>
|
| 21 |
+
</div>
|
| 22 |
+
</aside>
|
| 23 |
+
<main id="content">
|
| 24 |
+
<div id="page"></div>
|
| 25 |
+
</main>
|
| 26 |
+
</div>
|
| 27 |
+
|
| 28 |
+
<div id="modal" hidden>
|
| 29 |
+
<div class="modal-backdrop"></div>
|
| 30 |
+
<div class="modal-card" role="dialog" aria-modal="true">
|
| 31 |
+
<div class="modal-head">
|
| 32 |
+
<div class="modal-title">
|
| 33 |
+
<img class="modal-logo" src="./trackio-logo.png" alt="" />
|
| 34 |
+
Collaborate with your agent
|
| 35 |
+
</div>
|
| 36 |
+
<div class="modal-actions">
|
| 37 |
+
<button id="copy-agent" class="btn">Copy for agent</button>
|
| 38 |
+
<button id="modal-close" class="btn icon" aria-label="Close">×</button>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
<div class="modal-body">
|
| 42 |
+
<p class="modal-intro">
|
| 43 |
+
Point your coding agent at this logbook. It reads a compact,
|
| 44 |
+
token-efficient version — and if you've given it write access to this
|
| 45 |
+
Space, it can add findings that sync back automatically.
|
| 46 |
+
</p>
|
| 47 |
+
<ol id="connect-steps"></ol>
|
| 48 |
+
</div>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
|
| 52 |
+
<script src="./logbook.js"></script>
|
| 53 |
+
</body>
|
| 54 |
</html>
|
logbook.css
ADDED
|
@@ -0,0 +1,1602 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
:root {
|
| 2 |
+
--bg: #ffffff;
|
| 3 |
+
--paper: #fdfcf9;
|
| 4 |
+
--panel: #ffffff;
|
| 5 |
+
--ink: #1f2937;
|
| 6 |
+
--muted: #6b7280;
|
| 7 |
+
--line: #e5e7eb;
|
| 8 |
+
--accent: #f97316;
|
| 9 |
+
--accent-strong: #ea580c;
|
| 10 |
+
--accent-soft: #fff7ed;
|
| 11 |
+
--accent-line: rgba(249, 115, 22, 0.16);
|
| 12 |
+
--grid-line: rgba(31, 41, 55, 0.045);
|
| 13 |
+
--code-bg: #f3f4f6;
|
| 14 |
+
--radius: 12px;
|
| 15 |
+
--serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
|
| 16 |
+
--sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
|
| 17 |
+
sans-serif;
|
| 18 |
+
--mono: "SFMono-Regular", "Cascadia Mono", "JetBrains Mono", Menlo, Consolas,
|
| 19 |
+
ui-monospace, monospace;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
* {
|
| 23 |
+
box-sizing: border-box;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
html,
|
| 27 |
+
body {
|
| 28 |
+
margin: 0;
|
| 29 |
+
padding: 0;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
html {
|
| 33 |
+
scroll-behavior: smooth;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
body {
|
| 37 |
+
background: var(--bg);
|
| 38 |
+
color: var(--ink);
|
| 39 |
+
font-family: var(--sans);
|
| 40 |
+
font-size: 13px;
|
| 41 |
+
line-height: 1.65;
|
| 42 |
+
-webkit-font-smoothing: antialiased;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
#app {
|
| 46 |
+
display: flex;
|
| 47 |
+
min-height: 100vh;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
/* ---- sidebar (composition-book cover) ---- */
|
| 51 |
+
#sidebar {
|
| 52 |
+
width: 280px;
|
| 53 |
+
flex: 0 0 280px;
|
| 54 |
+
background: #17181c;
|
| 55 |
+
color: #e7e7ea;
|
| 56 |
+
position: sticky;
|
| 57 |
+
top: 0;
|
| 58 |
+
height: 100vh;
|
| 59 |
+
overflow-y: auto;
|
| 60 |
+
padding: 22px 16px;
|
| 61 |
+
display: flex;
|
| 62 |
+
flex-direction: column;
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
#book-head {
|
| 66 |
+
display: flex;
|
| 67 |
+
align-items: center;
|
| 68 |
+
gap: 10px;
|
| 69 |
+
padding: 8px;
|
| 70 |
+
margin-bottom: 12px;
|
| 71 |
+
border-radius: 10px;
|
| 72 |
+
cursor: pointer;
|
| 73 |
+
transition: background 0.12s;
|
| 74 |
+
}
|
| 75 |
+
#book-head:hover {
|
| 76 |
+
background: rgba(255, 255, 255, 0.05);
|
| 77 |
+
}
|
| 78 |
+
#book-wordmark {
|
| 79 |
+
width: 154px;
|
| 80 |
+
height: auto;
|
| 81 |
+
object-fit: contain;
|
| 82 |
+
}
|
| 83 |
+
.sr-only {
|
| 84 |
+
position: absolute;
|
| 85 |
+
width: 1px;
|
| 86 |
+
height: 1px;
|
| 87 |
+
padding: 0;
|
| 88 |
+
margin: -1px;
|
| 89 |
+
overflow: hidden;
|
| 90 |
+
clip: rect(0, 0, 0, 0);
|
| 91 |
+
white-space: nowrap;
|
| 92 |
+
border: 0;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
#tree {
|
| 96 |
+
flex: 1;
|
| 97 |
+
padding-top: 8px;
|
| 98 |
+
}
|
| 99 |
+
|
| 100 |
+
#tree a {
|
| 101 |
+
display: block;
|
| 102 |
+
padding: 6px 10px;
|
| 103 |
+
border-radius: 8px;
|
| 104 |
+
color: #c3c4cb;
|
| 105 |
+
text-decoration: none;
|
| 106 |
+
font-size: 14px;
|
| 107 |
+
transition: background 0.12s, color 0.12s;
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
#tree a:hover {
|
| 111 |
+
background: rgba(255, 255, 255, 0.06);
|
| 112 |
+
color: #ffffff;
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
#tree a.active {
|
| 116 |
+
background: rgba(249, 115, 22, 0.16);
|
| 117 |
+
color: #fdba74;
|
| 118 |
+
font-weight: 600;
|
| 119 |
+
}
|
| 120 |
+
|
| 121 |
+
#tree a .tree-mark {
|
| 122 |
+
color: #6b6d76;
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
#tree a:hover .tree-mark,
|
| 126 |
+
#tree a.active .tree-mark {
|
| 127 |
+
color: inherit;
|
| 128 |
+
opacity: 0.6;
|
| 129 |
+
}
|
| 130 |
+
|
| 131 |
+
#tree .depth-1 {
|
| 132 |
+
padding-left: 22px;
|
| 133 |
+
}
|
| 134 |
+
#tree .depth-2 {
|
| 135 |
+
padding-left: 34px;
|
| 136 |
+
}
|
| 137 |
+
#tree .depth-3 {
|
| 138 |
+
padding-left: 46px;
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
/* ---- content ---- */
|
| 143 |
+
#content {
|
| 144 |
+
flex: 1;
|
| 145 |
+
min-width: 0;
|
| 146 |
+
padding: 48px 40px 120px;
|
| 147 |
+
background-color: var(--paper);
|
| 148 |
+
background-image:
|
| 149 |
+
linear-gradient(var(--grid-line) 1px, transparent 1px),
|
| 150 |
+
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
|
| 151 |
+
background-size: 26px 26px;
|
| 152 |
+
background-position: center top;
|
| 153 |
+
}
|
| 154 |
+
|
| 155 |
+
#page {
|
| 156 |
+
width: 100%;
|
| 157 |
+
min-width: 0;
|
| 158 |
+
max-width: 1052px;
|
| 159 |
+
margin: 0 auto;
|
| 160 |
+
}
|
| 161 |
+
|
| 162 |
+
.page-section {
|
| 163 |
+
scroll-margin-top: 40px;
|
| 164 |
+
padding: 0 0 35px;
|
| 165 |
+
margin: 0 0 32px;
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
.page-section:last-child {
|
| 169 |
+
margin-bottom: 0;
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
.page-layout {
|
| 173 |
+
display: grid;
|
| 174 |
+
grid-template-columns: minmax(0, 760px) 248px;
|
| 175 |
+
gap: 44px;
|
| 176 |
+
align-items: start;
|
| 177 |
+
}
|
| 178 |
+
|
| 179 |
+
.page-body {
|
| 180 |
+
min-width: 0;
|
| 181 |
+
}
|
| 182 |
+
|
| 183 |
+
.resource-anchor {
|
| 184 |
+
display: block;
|
| 185 |
+
height: 0;
|
| 186 |
+
overflow: hidden;
|
| 187 |
+
}
|
| 188 |
+
|
| 189 |
+
/* ---- pinned notes ---- */
|
| 190 |
+
.pinned-notes {
|
| 191 |
+
margin: 30px 0 0;
|
| 192 |
+
}
|
| 193 |
+
.pinned-notes-list .cell {
|
| 194 |
+
margin: 0;
|
| 195 |
+
border-color: rgba(249, 115, 22, 0.55);
|
| 196 |
+
}
|
| 197 |
+
.pinned-notes-list .cell + .cell {
|
| 198 |
+
margin-top: 12px;
|
| 199 |
+
}
|
| 200 |
+
.cell.pinned-source {
|
| 201 |
+
border-color: rgba(249, 115, 22, 0.55);
|
| 202 |
+
}
|
| 203 |
+
.book-intro.has-pinned-notes {
|
| 204 |
+
border-bottom: none;
|
| 205 |
+
padding-bottom: 22px;
|
| 206 |
+
margin-bottom: 30px;
|
| 207 |
+
}
|
| 208 |
+
.book-intro.book-intro-tight {
|
| 209 |
+
border-bottom: none;
|
| 210 |
+
padding-bottom: 4px;
|
| 211 |
+
margin-bottom: 20px;
|
| 212 |
+
}
|
| 213 |
+
|
| 214 |
+
#page h1 {
|
| 215 |
+
font-family: var(--serif);
|
| 216 |
+
font-size: 34px;
|
| 217 |
+
line-height: 1.15;
|
| 218 |
+
letter-spacing: -0.02em;
|
| 219 |
+
margin: 0 0 8px;
|
| 220 |
+
overflow-wrap: anywhere;
|
| 221 |
+
}
|
| 222 |
+
|
| 223 |
+
#page .page-section:not(.book-intro) h1 {
|
| 224 |
+
font-size: 26px;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
#page h2 {
|
| 228 |
+
font-family: var(--serif);
|
| 229 |
+
font-size: 24px;
|
| 230 |
+
margin: 36px 0 10px;
|
| 231 |
+
}
|
| 232 |
+
|
| 233 |
+
#page h3 {
|
| 234 |
+
font-size: 17px;
|
| 235 |
+
font-weight: 700;
|
| 236 |
+
margin: 26px 0 2px;
|
| 237 |
+
letter-spacing: -0.01em;
|
| 238 |
+
}
|
| 239 |
+
|
| 240 |
+
#page h3::before {
|
| 241 |
+
content: "";
|
| 242 |
+
display: inline-block;
|
| 243 |
+
width: 7px;
|
| 244 |
+
height: 7px;
|
| 245 |
+
border-radius: 2px;
|
| 246 |
+
background: var(--accent);
|
| 247 |
+
margin-right: 10px;
|
| 248 |
+
vertical-align: middle;
|
| 249 |
+
transform: translateY(-1px);
|
| 250 |
+
}
|
| 251 |
+
|
| 252 |
+
#page p {
|
| 253 |
+
margin: 10px 0;
|
| 254 |
+
}
|
| 255 |
+
|
| 256 |
+
#page blockquote {
|
| 257 |
+
margin: 14px 0;
|
| 258 |
+
padding: 2px 16px;
|
| 259 |
+
border-left: 3px solid #fdba74;
|
| 260 |
+
color: var(--muted);
|
| 261 |
+
}
|
| 262 |
+
|
| 263 |
+
#page hr {
|
| 264 |
+
display: none;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
#page code {
|
| 268 |
+
font-family: var(--mono);
|
| 269 |
+
font-size: 0.86em;
|
| 270 |
+
background: var(--code-bg);
|
| 271 |
+
padding: 2px 6px;
|
| 272 |
+
border-radius: 6px;
|
| 273 |
+
}
|
| 274 |
+
|
| 275 |
+
#page pre {
|
| 276 |
+
max-width: 100%;
|
| 277 |
+
background: var(--code-bg);
|
| 278 |
+
border: 1px solid var(--line);
|
| 279 |
+
border-radius: var(--radius);
|
| 280 |
+
padding: 14px 16px;
|
| 281 |
+
overflow-x: auto;
|
| 282 |
+
}
|
| 283 |
+
#page pre code {
|
| 284 |
+
background: none;
|
| 285 |
+
padding: 0;
|
| 286 |
+
font-size: 11.5px;
|
| 287 |
+
}
|
| 288 |
+
|
| 289 |
+
/* ---- code blocks + collapsible accordion ---- */
|
| 290 |
+
#page pre.hl {
|
| 291 |
+
background: #17181c;
|
| 292 |
+
border: none;
|
| 293 |
+
color: #e7e7ea;
|
| 294 |
+
font-size: 13px;
|
| 295 |
+
line-height: 1.58;
|
| 296 |
+
}
|
| 297 |
+
#page pre.hl code {
|
| 298 |
+
color: inherit;
|
| 299 |
+
font-family: var(--mono);
|
| 300 |
+
}
|
| 301 |
+
.code-accordion {
|
| 302 |
+
border: 1px solid rgba(249, 115, 22, 0.2);
|
| 303 |
+
border-radius: 8px;
|
| 304 |
+
overflow: hidden;
|
| 305 |
+
margin: 12px 0;
|
| 306 |
+
background: #17181c;
|
| 307 |
+
}
|
| 308 |
+
.code-accordion summary {
|
| 309 |
+
list-style: none;
|
| 310 |
+
cursor: pointer;
|
| 311 |
+
display: flex;
|
| 312 |
+
align-items: center;
|
| 313 |
+
gap: 9px;
|
| 314 |
+
padding: 9px 12px;
|
| 315 |
+
font-family: var(--mono);
|
| 316 |
+
font-size: 11.5px;
|
| 317 |
+
font-weight: 700;
|
| 318 |
+
color: #e7e7ea;
|
| 319 |
+
background: #1e2027;
|
| 320 |
+
user-select: none;
|
| 321 |
+
overflow-wrap: anywhere;
|
| 322 |
+
}
|
| 323 |
+
.code-accordion summary::-webkit-details-marker {
|
| 324 |
+
display: none;
|
| 325 |
+
}
|
| 326 |
+
.code-accordion summary::after {
|
| 327 |
+
content: "▸";
|
| 328 |
+
margin-left: auto;
|
| 329 |
+
color: var(--accent);
|
| 330 |
+
transition: transform 0.12s;
|
| 331 |
+
transform: rotate(180deg);
|
| 332 |
+
}
|
| 333 |
+
.code-accordion[open] summary::after {
|
| 334 |
+
transform: rotate(90deg);
|
| 335 |
+
}
|
| 336 |
+
.code-accordion .code-ico {
|
| 337 |
+
color: var(--accent);
|
| 338 |
+
font-weight: 700;
|
| 339 |
+
}
|
| 340 |
+
.code-accordion pre.hl {
|
| 341 |
+
margin: 0;
|
| 342 |
+
border-radius: 0;
|
| 343 |
+
border: none;
|
| 344 |
+
border-top: 1px solid rgba(249, 115, 22, 0.16);
|
| 345 |
+
}
|
| 346 |
+
.tok-comment {
|
| 347 |
+
color: #7a7d87;
|
| 348 |
+
font-style: italic;
|
| 349 |
+
}
|
| 350 |
+
.tok-string {
|
| 351 |
+
color: #a5d6a7;
|
| 352 |
+
}
|
| 353 |
+
.tok-keyword {
|
| 354 |
+
color: #fdba74;
|
| 355 |
+
}
|
| 356 |
+
.tok-number {
|
| 357 |
+
color: #7fd0e0;
|
| 358 |
+
}
|
| 359 |
+
|
| 360 |
+
#page a {
|
| 361 |
+
color: var(--accent);
|
| 362 |
+
}
|
| 363 |
+
|
| 364 |
+
#page ul {
|
| 365 |
+
padding-left: 20px;
|
| 366 |
+
}
|
| 367 |
+
|
| 368 |
+
.ts {
|
| 369 |
+
font-family: var(--mono);
|
| 370 |
+
font-size: 12px;
|
| 371 |
+
color: var(--muted);
|
| 372 |
+
background: none;
|
| 373 |
+
padding: 0;
|
| 374 |
+
}
|
| 375 |
+
|
| 376 |
+
/* ---- notebook-style cells ---- */
|
| 377 |
+
.cell {
|
| 378 |
+
max-width: 100%;
|
| 379 |
+
border: 1px solid var(--line);
|
| 380 |
+
border-radius: 10px;
|
| 381 |
+
background: rgba(255, 255, 255, 0.86);
|
| 382 |
+
margin: 18px 0;
|
| 383 |
+
overflow: hidden;
|
| 384 |
+
box-shadow: 0 2px 10px rgba(31, 41, 55, 0.035);
|
| 385 |
+
}
|
| 386 |
+
.cell-head {
|
| 387 |
+
display: flex;
|
| 388 |
+
justify-content: space-between;
|
| 389 |
+
gap: 16px;
|
| 390 |
+
align-items: center;
|
| 391 |
+
padding: 14px 18px;
|
| 392 |
+
background: rgba(255, 255, 255, 0.92);
|
| 393 |
+
border-bottom: 1px solid var(--line);
|
| 394 |
+
}
|
| 395 |
+
.cell-head.no-title {
|
| 396 |
+
justify-content: flex-end;
|
| 397 |
+
padding-top: 10px;
|
| 398 |
+
padding-bottom: 10px;
|
| 399 |
+
}
|
| 400 |
+
.cell-title {
|
| 401 |
+
flex: 1;
|
| 402 |
+
min-width: 0;
|
| 403 |
+
font-size: 13px;
|
| 404 |
+
font-weight: 650;
|
| 405 |
+
color: var(--ink);
|
| 406 |
+
line-height: 1.35;
|
| 407 |
+
overflow-wrap: anywhere;
|
| 408 |
+
}
|
| 409 |
+
.cell-meta {
|
| 410 |
+
flex: 0 0 auto;
|
| 411 |
+
display: flex;
|
| 412 |
+
align-items: center;
|
| 413 |
+
gap: 10px;
|
| 414 |
+
font-family: var(--sans);
|
| 415 |
+
font-size: 13px;
|
| 416 |
+
color: var(--muted);
|
| 417 |
+
}
|
| 418 |
+
.cell-open {
|
| 419 |
+
flex: 0 0 auto;
|
| 420 |
+
font-family: var(--mono);
|
| 421 |
+
font-size: 12px;
|
| 422 |
+
color: var(--accent);
|
| 423 |
+
text-decoration: none;
|
| 424 |
+
}
|
| 425 |
+
.cell-open:hover {
|
| 426 |
+
color: var(--accent-strong);
|
| 427 |
+
}
|
| 428 |
+
.cell-body {
|
| 429 |
+
min-width: 0;
|
| 430 |
+
padding: 14px 18px 18px;
|
| 431 |
+
}
|
| 432 |
+
.cell.dashboard .cell-body {
|
| 433 |
+
padding: 0;
|
| 434 |
+
}
|
| 435 |
+
#page .cell-body h1,
|
| 436 |
+
#page .cell-body h2 {
|
| 437 |
+
font-family: var(--sans);
|
| 438 |
+
font-size: 17px;
|
| 439 |
+
font-weight: 700;
|
| 440 |
+
letter-spacing: -0.01em;
|
| 441 |
+
line-height: 1.35;
|
| 442 |
+
margin: 22px 0 6px;
|
| 443 |
+
}
|
| 444 |
+
#page .cell-body > :first-child {
|
| 445 |
+
margin-top: 0;
|
| 446 |
+
}
|
| 447 |
+
#page .cell-body > :last-child {
|
| 448 |
+
margin-bottom: 0;
|
| 449 |
+
}
|
| 450 |
+
.cell.code .cell-head {
|
| 451 |
+
background: #fbfbfc;
|
| 452 |
+
}
|
| 453 |
+
.figure-fit {
|
| 454 |
+
position: relative;
|
| 455 |
+
overflow: hidden;
|
| 456 |
+
min-height: 160px;
|
| 457 |
+
border: 1px solid var(--line);
|
| 458 |
+
border-radius: 8px;
|
| 459 |
+
background: #fff;
|
| 460 |
+
}
|
| 461 |
+
.figure-fit[hidden] {
|
| 462 |
+
display: none;
|
| 463 |
+
}
|
| 464 |
+
.figure-fit:fullscreen,
|
| 465 |
+
.figure-fit:-webkit-full-screen {
|
| 466 |
+
width: 100%;
|
| 467 |
+
height: 100%;
|
| 468 |
+
border: none;
|
| 469 |
+
border-radius: 0;
|
| 470 |
+
}
|
| 471 |
+
.figure-frame {
|
| 472 |
+
display: block;
|
| 473 |
+
width: 100%;
|
| 474 |
+
min-height: 160px;
|
| 475 |
+
border: none;
|
| 476 |
+
background: #fff;
|
| 477 |
+
}
|
| 478 |
+
.figure-frame[hidden],
|
| 479 |
+
.figure-raw[hidden] {
|
| 480 |
+
display: none;
|
| 481 |
+
}
|
| 482 |
+
.fig-switch {
|
| 483 |
+
position: relative;
|
| 484 |
+
display: inline-flex;
|
| 485 |
+
flex: 0 0 auto;
|
| 486 |
+
border: 1px solid var(--line);
|
| 487 |
+
border-radius: 999px;
|
| 488 |
+
background: var(--code-bg);
|
| 489 |
+
padding: 2px;
|
| 490 |
+
}
|
| 491 |
+
.fig-switch button {
|
| 492 |
+
position: relative;
|
| 493 |
+
z-index: 1;
|
| 494 |
+
flex: 1;
|
| 495 |
+
min-width: 62px;
|
| 496 |
+
border: none;
|
| 497 |
+
background: none;
|
| 498 |
+
font-family: var(--sans);
|
| 499 |
+
font-size: 12px;
|
| 500 |
+
font-weight: 600;
|
| 501 |
+
color: var(--muted);
|
| 502 |
+
padding: 3px 12px;
|
| 503 |
+
border-radius: 999px;
|
| 504 |
+
cursor: pointer;
|
| 505 |
+
transition: color 0.15s;
|
| 506 |
+
}
|
| 507 |
+
.fig-switch button.active {
|
| 508 |
+
color: var(--accent-strong);
|
| 509 |
+
}
|
| 510 |
+
.fig-switch-thumb {
|
| 511 |
+
position: absolute;
|
| 512 |
+
top: 2px;
|
| 513 |
+
bottom: 2px;
|
| 514 |
+
left: 2px;
|
| 515 |
+
width: calc(50% - 2px);
|
| 516 |
+
border-radius: 999px;
|
| 517 |
+
background: var(--panel);
|
| 518 |
+
border: 1px solid rgba(249, 115, 22, 0.35);
|
| 519 |
+
box-shadow: 0 1px 4px rgba(31, 41, 55, 0.08);
|
| 520 |
+
transition: transform 0.18s ease;
|
| 521 |
+
}
|
| 522 |
+
.fig-switch.raw .fig-switch-thumb {
|
| 523 |
+
transform: translateX(100%);
|
| 524 |
+
}
|
| 525 |
+
#page .figure-raw pre {
|
| 526 |
+
margin: 0;
|
| 527 |
+
max-height: 420px;
|
| 528 |
+
overflow: auto;
|
| 529 |
+
font-family: var(--mono);
|
| 530 |
+
font-size: 13px;
|
| 531 |
+
line-height: 1.55;
|
| 532 |
+
background: var(--code-bg);
|
| 533 |
+
border: 1px solid var(--line);
|
| 534 |
+
border-radius: 8px;
|
| 535 |
+
padding: 12px 14px;
|
| 536 |
+
}
|
| 537 |
+
/* ---- figure fullscreen ---- */
|
| 538 |
+
.cell-fullscreen {
|
| 539 |
+
position: relative;
|
| 540 |
+
display: inline-flex;
|
| 541 |
+
flex: 0 0 auto;
|
| 542 |
+
}
|
| 543 |
+
.cell-fullscreen-btn {
|
| 544 |
+
display: inline-flex;
|
| 545 |
+
align-items: center;
|
| 546 |
+
justify-content: center;
|
| 547 |
+
width: 26px;
|
| 548 |
+
height: 26px;
|
| 549 |
+
padding: 0;
|
| 550 |
+
border: 1px solid var(--line);
|
| 551 |
+
border-radius: 999px;
|
| 552 |
+
background: var(--code-bg);
|
| 553 |
+
color: var(--muted);
|
| 554 |
+
cursor: pointer;
|
| 555 |
+
transition: color 0.15s, border-color 0.15s, background 0.15s;
|
| 556 |
+
}
|
| 557 |
+
.cell-fullscreen-btn:hover {
|
| 558 |
+
color: var(--accent-strong);
|
| 559 |
+
border-color: rgba(249, 115, 22, 0.35);
|
| 560 |
+
background: var(--accent-soft);
|
| 561 |
+
}
|
| 562 |
+
.cell-fullscreen-btn svg {
|
| 563 |
+
width: 14px;
|
| 564 |
+
height: 14px;
|
| 565 |
+
}
|
| 566 |
+
/* ---- copyable snippets ---- */
|
| 567 |
+
.snippet {
|
| 568 |
+
position: relative;
|
| 569 |
+
}
|
| 570 |
+
.copy-snippet {
|
| 571 |
+
position: absolute;
|
| 572 |
+
top: 7px;
|
| 573 |
+
right: 8px;
|
| 574 |
+
width: 24px;
|
| 575 |
+
height: 24px;
|
| 576 |
+
border: none;
|
| 577 |
+
border-radius: 6px;
|
| 578 |
+
background: rgba(255, 255, 255, 0.08);
|
| 579 |
+
color: #9a9da8;
|
| 580 |
+
font-size: 12px;
|
| 581 |
+
line-height: 1;
|
| 582 |
+
cursor: pointer;
|
| 583 |
+
opacity: 0;
|
| 584 |
+
transition: opacity 0.12s, color 0.12s, background 0.12s;
|
| 585 |
+
}
|
| 586 |
+
.snippet:hover .copy-snippet,
|
| 587 |
+
.jp-out:hover .copy-snippet,
|
| 588 |
+
.figure-raw:hover .copy-snippet,
|
| 589 |
+
.code-accordion summary:hover .copy-snippet {
|
| 590 |
+
opacity: 1;
|
| 591 |
+
}
|
| 592 |
+
.copy-snippet:hover {
|
| 593 |
+
color: #ffffff;
|
| 594 |
+
background: rgba(255, 255, 255, 0.16);
|
| 595 |
+
}
|
| 596 |
+
.copy-snippet.copied {
|
| 597 |
+
color: #52d08a;
|
| 598 |
+
opacity: 1;
|
| 599 |
+
}
|
| 600 |
+
.code-accordion .code-name {
|
| 601 |
+
user-select: text;
|
| 602 |
+
cursor: text;
|
| 603 |
+
}
|
| 604 |
+
.jp-out,
|
| 605 |
+
.figure-raw {
|
| 606 |
+
position: relative;
|
| 607 |
+
}
|
| 608 |
+
.jp-out .copy-snippet,
|
| 609 |
+
.figure-raw .copy-snippet {
|
| 610 |
+
background: var(--code-bg);
|
| 611 |
+
color: var(--muted);
|
| 612 |
+
border: 1px solid var(--line);
|
| 613 |
+
}
|
| 614 |
+
.jp-out .copy-snippet:hover,
|
| 615 |
+
.figure-raw .copy-snippet:hover {
|
| 616 |
+
color: var(--accent-strong);
|
| 617 |
+
background: var(--panel);
|
| 618 |
+
}
|
| 619 |
+
|
| 620 |
+
/* ---- jupyter-style code cells ---- */
|
| 621 |
+
.jp {
|
| 622 |
+
border: 1px solid var(--line);
|
| 623 |
+
border-radius: 10px;
|
| 624 |
+
overflow: hidden;
|
| 625 |
+
margin: 12px 0;
|
| 626 |
+
background: var(--panel);
|
| 627 |
+
}
|
| 628 |
+
.jp-gutter {
|
| 629 |
+
flex: 0 0 46px;
|
| 630 |
+
padding: 13px 0 0 13px;
|
| 631 |
+
font-family: var(--mono);
|
| 632 |
+
font-size: 10.5px;
|
| 633 |
+
letter-spacing: 0.07em;
|
| 634 |
+
text-transform: uppercase;
|
| 635 |
+
font-weight: 600;
|
| 636 |
+
user-select: none;
|
| 637 |
+
}
|
| 638 |
+
.jp-in {
|
| 639 |
+
display: flex;
|
| 640 |
+
background: #17181c;
|
| 641 |
+
}
|
| 642 |
+
.jp-in .jp-gutter {
|
| 643 |
+
color: #6f727d;
|
| 644 |
+
}
|
| 645 |
+
.jp-in-body {
|
| 646 |
+
flex: 1;
|
| 647 |
+
min-width: 0;
|
| 648 |
+
}
|
| 649 |
+
#page .jp-in-body pre.hl {
|
| 650 |
+
margin: 0;
|
| 651 |
+
border: none;
|
| 652 |
+
border-radius: 0;
|
| 653 |
+
background: none;
|
| 654 |
+
padding: 12px 16px 12px 0;
|
| 655 |
+
}
|
| 656 |
+
.jp-in-body .code-accordion {
|
| 657 |
+
margin: 0;
|
| 658 |
+
border: none;
|
| 659 |
+
border-top: 1px solid rgba(255, 255, 255, 0.09);
|
| 660 |
+
border-radius: 0;
|
| 661 |
+
background: none;
|
| 662 |
+
}
|
| 663 |
+
.jp-in-body .code-accordion summary {
|
| 664 |
+
background: none;
|
| 665 |
+
padding: 9px 16px 9px 0;
|
| 666 |
+
}
|
| 667 |
+
.jp-in-body .code-accordion pre.hl {
|
| 668 |
+
border-top: 1px solid rgba(255, 255, 255, 0.09);
|
| 669 |
+
}
|
| 670 |
+
.jp-meta {
|
| 671 |
+
padding: 5px 14px;
|
| 672 |
+
font-family: var(--mono);
|
| 673 |
+
font-size: 11.5px;
|
| 674 |
+
color: var(--muted);
|
| 675 |
+
background: #fbfbfc;
|
| 676 |
+
border-top: 1px solid var(--line);
|
| 677 |
+
}
|
| 678 |
+
.jp-out {
|
| 679 |
+
display: flex;
|
| 680 |
+
border-top: 1px solid var(--line);
|
| 681 |
+
background: var(--panel);
|
| 682 |
+
}
|
| 683 |
+
.jp-out .jp-gutter {
|
| 684 |
+
color: var(--accent-strong);
|
| 685 |
+
}
|
| 686 |
+
.jp-out-body {
|
| 687 |
+
flex: 1;
|
| 688 |
+
min-width: 0;
|
| 689 |
+
}
|
| 690 |
+
#page .jp-out-pre {
|
| 691 |
+
min-width: 0;
|
| 692 |
+
margin: 0;
|
| 693 |
+
border: none;
|
| 694 |
+
border-radius: 0;
|
| 695 |
+
background: none;
|
| 696 |
+
color: var(--ink);
|
| 697 |
+
font-family: var(--mono);
|
| 698 |
+
font-size: 13px;
|
| 699 |
+
line-height: 1.55;
|
| 700 |
+
padding: 12px 16px 12px 0;
|
| 701 |
+
white-space: pre;
|
| 702 |
+
overflow-x: auto;
|
| 703 |
+
overflow-y: auto;
|
| 704 |
+
max-height: 26em;
|
| 705 |
+
}
|
| 706 |
+
.jp-artifacts {
|
| 707 |
+
display: flex;
|
| 708 |
+
flex-direction: column;
|
| 709 |
+
}
|
| 710 |
+
.jp-out-body .jp-out-pre + .jp-artifacts {
|
| 711 |
+
border-top: 1px solid var(--line);
|
| 712 |
+
}
|
| 713 |
+
.out-artifact {
|
| 714 |
+
display: flex;
|
| 715 |
+
align-items: baseline;
|
| 716 |
+
gap: 8px;
|
| 717 |
+
padding: 9px 16px 9px 0;
|
| 718 |
+
text-decoration: none;
|
| 719 |
+
color: inherit;
|
| 720 |
+
}
|
| 721 |
+
.out-artifact + .out-artifact {
|
| 722 |
+
border-top: 1px solid var(--line);
|
| 723 |
+
}
|
| 724 |
+
a.out-artifact:hover .out-artifact-name {
|
| 725 |
+
color: var(--accent-strong);
|
| 726 |
+
}
|
| 727 |
+
.out-artifact-ico {
|
| 728 |
+
flex: 0 0 auto;
|
| 729 |
+
font-size: 13px;
|
| 730 |
+
}
|
| 731 |
+
.out-artifact-name {
|
| 732 |
+
font-family: var(--mono);
|
| 733 |
+
font-size: 12.5px;
|
| 734 |
+
font-weight: 600;
|
| 735 |
+
color: var(--ink);
|
| 736 |
+
overflow: hidden;
|
| 737 |
+
text-overflow: ellipsis;
|
| 738 |
+
white-space: nowrap;
|
| 739 |
+
}
|
| 740 |
+
.out-artifact-meta {
|
| 741 |
+
flex: 0 0 auto;
|
| 742 |
+
margin-left: auto;
|
| 743 |
+
padding-left: 12px;
|
| 744 |
+
font-size: 12px;
|
| 745 |
+
color: var(--muted);
|
| 746 |
+
white-space: nowrap;
|
| 747 |
+
}
|
| 748 |
+
.out-artifact-state.open {
|
| 749 |
+
color: var(--accent);
|
| 750 |
+
font-weight: 600;
|
| 751 |
+
}
|
| 752 |
+
.trackio-embed {
|
| 753 |
+
border: 1px solid var(--line);
|
| 754 |
+
border-radius: var(--radius);
|
| 755 |
+
overflow: hidden;
|
| 756 |
+
background: var(--panel);
|
| 757 |
+
}
|
| 758 |
+
.trackio-cell-meta {
|
| 759 |
+
display: flex;
|
| 760 |
+
gap: 6px;
|
| 761 |
+
flex-wrap: wrap;
|
| 762 |
+
justify-content: flex-end;
|
| 763 |
+
}
|
| 764 |
+
|
| 765 |
+
/* ---- unfurl cards ---- */
|
| 766 |
+
.unfurl {
|
| 767 |
+
display: block;
|
| 768 |
+
border: 1px solid var(--line);
|
| 769 |
+
border-radius: var(--radius);
|
| 770 |
+
background: var(--panel);
|
| 771 |
+
margin: 12px 0;
|
| 772 |
+
overflow: hidden;
|
| 773 |
+
text-decoration: none;
|
| 774 |
+
color: inherit;
|
| 775 |
+
transition: border-color 0.14s, box-shadow 0.14s;
|
| 776 |
+
}
|
| 777 |
+
.unfurl:hover {
|
| 778 |
+
border-color: #cfcbe6;
|
| 779 |
+
box-shadow: 0 4px 18px rgba(30, 20, 80, 0.06);
|
| 780 |
+
}
|
| 781 |
+
|
| 782 |
+
.unfurl-body {
|
| 783 |
+
padding: 13px 16px;
|
| 784 |
+
display: flex;
|
| 785 |
+
gap: 12px;
|
| 786 |
+
align-items: flex-start;
|
| 787 |
+
}
|
| 788 |
+
|
| 789 |
+
.unfurl-ico {
|
| 790 |
+
font-size: 20px;
|
| 791 |
+
line-height: 1.3;
|
| 792 |
+
flex: 0 0 auto;
|
| 793 |
+
}
|
| 794 |
+
|
| 795 |
+
.unfurl-main {
|
| 796 |
+
min-width: 0;
|
| 797 |
+
flex: 1;
|
| 798 |
+
}
|
| 799 |
+
|
| 800 |
+
.unfurl-kind {
|
| 801 |
+
font-family: var(--mono);
|
| 802 |
+
font-size: 10.5px;
|
| 803 |
+
text-transform: uppercase;
|
| 804 |
+
letter-spacing: 0.08em;
|
| 805 |
+
color: var(--accent);
|
| 806 |
+
font-weight: 600;
|
| 807 |
+
}
|
| 808 |
+
|
| 809 |
+
.unfurl-title {
|
| 810 |
+
font-weight: 650;
|
| 811 |
+
font-size: 15px;
|
| 812 |
+
margin: 1px 0 2px;
|
| 813 |
+
white-space: nowrap;
|
| 814 |
+
overflow: hidden;
|
| 815 |
+
text-overflow: ellipsis;
|
| 816 |
+
}
|
| 817 |
+
|
| 818 |
+
.unfurl-desc {
|
| 819 |
+
color: var(--muted);
|
| 820 |
+
font-size: 13.5px;
|
| 821 |
+
line-height: 1.45;
|
| 822 |
+
}
|
| 823 |
+
|
| 824 |
+
.unfurl-meta {
|
| 825 |
+
margin-top: 6px;
|
| 826 |
+
display: flex;
|
| 827 |
+
flex-wrap: wrap;
|
| 828 |
+
gap: 6px;
|
| 829 |
+
}
|
| 830 |
+
|
| 831 |
+
.chip {
|
| 832 |
+
font-size: 11.5px;
|
| 833 |
+
background: var(--code-bg);
|
| 834 |
+
border-radius: 999px;
|
| 835 |
+
padding: 2px 9px;
|
| 836 |
+
color: var(--muted);
|
| 837 |
+
font-family: var(--mono);
|
| 838 |
+
}
|
| 839 |
+
|
| 840 |
+
.unfurl-raw {
|
| 841 |
+
font-family: var(--mono);
|
| 842 |
+
font-size: 11px;
|
| 843 |
+
color: var(--muted);
|
| 844 |
+
border-top: 1px solid var(--line);
|
| 845 |
+
padding: 7px 16px;
|
| 846 |
+
white-space: nowrap;
|
| 847 |
+
overflow: hidden;
|
| 848 |
+
text-overflow: ellipsis;
|
| 849 |
+
}
|
| 850 |
+
|
| 851 |
+
.unfurl.embed {
|
| 852 |
+
padding: 0;
|
| 853 |
+
overflow: hidden;
|
| 854 |
+
}
|
| 855 |
+
.embed-head {
|
| 856 |
+
display: flex;
|
| 857 |
+
align-items: center;
|
| 858 |
+
gap: 10px;
|
| 859 |
+
padding: 10px 14px;
|
| 860 |
+
border-bottom: 1px solid var(--line);
|
| 861 |
+
}
|
| 862 |
+
.embed-head .unfurl-kind {
|
| 863 |
+
flex: 0 0 auto;
|
| 864 |
+
}
|
| 865 |
+
.embed-title {
|
| 866 |
+
flex: 1;
|
| 867 |
+
min-width: 0;
|
| 868 |
+
font-weight: 650;
|
| 869 |
+
font-size: 14px;
|
| 870 |
+
color: var(--ink);
|
| 871 |
+
text-decoration: none;
|
| 872 |
+
white-space: nowrap;
|
| 873 |
+
overflow: hidden;
|
| 874 |
+
text-overflow: ellipsis;
|
| 875 |
+
}
|
| 876 |
+
.embed-title:hover {
|
| 877 |
+
color: var(--accent);
|
| 878 |
+
}
|
| 879 |
+
.embed-open {
|
| 880 |
+
flex: 0 0 auto;
|
| 881 |
+
font-family: var(--mono);
|
| 882 |
+
font-size: 12px;
|
| 883 |
+
color: var(--accent);
|
| 884 |
+
text-decoration: none;
|
| 885 |
+
}
|
| 886 |
+
.embed-frame {
|
| 887 |
+
display: block;
|
| 888 |
+
width: 100%;
|
| 889 |
+
height: 560px;
|
| 890 |
+
border: 0;
|
| 891 |
+
background: var(--code-bg);
|
| 892 |
+
}
|
| 893 |
+
|
| 894 |
+
.dashboard-shell {
|
| 895 |
+
display: block;
|
| 896 |
+
}
|
| 897 |
+
.dashboard-shell .dashboard-frame {
|
| 898 |
+
display: block;
|
| 899 |
+
width: 100%;
|
| 900 |
+
height: 900px;
|
| 901 |
+
border: 0;
|
| 902 |
+
background: var(--code-bg);
|
| 903 |
+
}
|
| 904 |
+
|
| 905 |
+
.unfurl.image {
|
| 906 |
+
padding: 0;
|
| 907 |
+
}
|
| 908 |
+
.unfurl.image img {
|
| 909 |
+
display: block;
|
| 910 |
+
width: 100%;
|
| 911 |
+
height: auto;
|
| 912 |
+
max-height: 460px;
|
| 913 |
+
object-fit: contain;
|
| 914 |
+
background: var(--code-bg);
|
| 915 |
+
}
|
| 916 |
+
|
| 917 |
+
.artifact-chip {
|
| 918 |
+
border: 1px solid var(--line);
|
| 919 |
+
background: var(--panel);
|
| 920 |
+
border-radius: var(--radius);
|
| 921 |
+
padding: 10px 14px;
|
| 922 |
+
margin: 8px 0;
|
| 923 |
+
font-size: 14px;
|
| 924 |
+
}
|
| 925 |
+
.cell.dashboard .artifact-chip {
|
| 926 |
+
margin: 14px 18px 18px;
|
| 927 |
+
}
|
| 928 |
+
.artifact-chip code {
|
| 929 |
+
color: var(--accent);
|
| 930 |
+
}
|
| 931 |
+
|
| 932 |
+
/* ---- task board ---- */
|
| 933 |
+
.board-wrap {
|
| 934 |
+
overflow-x: auto;
|
| 935 |
+
border: 1px solid var(--line);
|
| 936 |
+
border-radius: var(--radius);
|
| 937 |
+
margin: 12px 0 20px;
|
| 938 |
+
background: var(--panel);
|
| 939 |
+
}
|
| 940 |
+
table.board {
|
| 941 |
+
border-collapse: collapse;
|
| 942 |
+
width: 100%;
|
| 943 |
+
font-size: 14px;
|
| 944 |
+
}
|
| 945 |
+
table.board th,
|
| 946 |
+
table.board td {
|
| 947 |
+
text-align: left;
|
| 948 |
+
padding: 9px 14px;
|
| 949 |
+
border-bottom: 1px solid var(--line);
|
| 950 |
+
vertical-align: top;
|
| 951 |
+
}
|
| 952 |
+
table.board thead th {
|
| 953 |
+
background: var(--accent-soft);
|
| 954 |
+
font-size: 12px;
|
| 955 |
+
text-transform: uppercase;
|
| 956 |
+
letter-spacing: 0.05em;
|
| 957 |
+
color: #9a4a12;
|
| 958 |
+
font-weight: 600;
|
| 959 |
+
border-bottom: 1px solid var(--line);
|
| 960 |
+
}
|
| 961 |
+
table.board tbody tr:last-child td {
|
| 962 |
+
border-bottom: none;
|
| 963 |
+
}
|
| 964 |
+
table.board .col-check {
|
| 965 |
+
text-align: center;
|
| 966 |
+
width: 92px;
|
| 967 |
+
white-space: nowrap;
|
| 968 |
+
}
|
| 969 |
+
table.board tr.section-row td {
|
| 970 |
+
background: var(--accent-soft);
|
| 971 |
+
text-align: center;
|
| 972 |
+
font-weight: 700;
|
| 973 |
+
font-size: 13px;
|
| 974 |
+
color: var(--accent-strong);
|
| 975 |
+
padding: 7px 14px;
|
| 976 |
+
letter-spacing: 0.02em;
|
| 977 |
+
}
|
| 978 |
+
.box {
|
| 979 |
+
display: inline-flex;
|
| 980 |
+
align-items: center;
|
| 981 |
+
justify-content: center;
|
| 982 |
+
width: 18px;
|
| 983 |
+
height: 18px;
|
| 984 |
+
border: 1.5px solid #cfcbe0;
|
| 985 |
+
border-radius: 5px;
|
| 986 |
+
font-size: 12px;
|
| 987 |
+
color: #fff;
|
| 988 |
+
line-height: 1;
|
| 989 |
+
}
|
| 990 |
+
.box.on {
|
| 991 |
+
background: var(--accent);
|
| 992 |
+
border-color: var(--accent);
|
| 993 |
+
}
|
| 994 |
+
.who-chip {
|
| 995 |
+
display: inline-block;
|
| 996 |
+
padding: 3px 12px;
|
| 997 |
+
border-radius: 999px;
|
| 998 |
+
font-size: 12.5px;
|
| 999 |
+
font-weight: 600;
|
| 1000 |
+
white-space: nowrap;
|
| 1001 |
+
}
|
| 1002 |
+
.who-chip.muted {
|
| 1003 |
+
background: var(--code-bg);
|
| 1004 |
+
color: var(--muted);
|
| 1005 |
+
font-weight: 500;
|
| 1006 |
+
}
|
| 1007 |
+
|
| 1008 |
+
/* ---- status badges + clickable rows ---- */
|
| 1009 |
+
table.board .col-status {
|
| 1010 |
+
width: 130px;
|
| 1011 |
+
white-space: nowrap;
|
| 1012 |
+
}
|
| 1013 |
+
.badge {
|
| 1014 |
+
display: inline-block;
|
| 1015 |
+
padding: 3px 11px;
|
| 1016 |
+
border-radius: 999px;
|
| 1017 |
+
font-size: 12px;
|
| 1018 |
+
font-weight: 600;
|
| 1019 |
+
letter-spacing: 0.01em;
|
| 1020 |
+
}
|
| 1021 |
+
.badge.gray {
|
| 1022 |
+
background: var(--code-bg);
|
| 1023 |
+
color: var(--muted);
|
| 1024 |
+
}
|
| 1025 |
+
.badge.amber {
|
| 1026 |
+
background: var(--accent-soft);
|
| 1027 |
+
color: #b45309;
|
| 1028 |
+
}
|
| 1029 |
+
.badge.green {
|
| 1030 |
+
background: #e6f7ee;
|
| 1031 |
+
color: #1a8a55;
|
| 1032 |
+
}
|
| 1033 |
+
.badge.red {
|
| 1034 |
+
background: #fde8ec;
|
| 1035 |
+
color: #c62a4b;
|
| 1036 |
+
}
|
| 1037 |
+
table.board tr.linked-row {
|
| 1038 |
+
cursor: pointer;
|
| 1039 |
+
}
|
| 1040 |
+
table.board tr.linked-row:hover td {
|
| 1041 |
+
background: var(--accent-soft);
|
| 1042 |
+
}
|
| 1043 |
+
table.board tr.linked-row a {
|
| 1044 |
+
color: var(--ink);
|
| 1045 |
+
font-weight: 600;
|
| 1046 |
+
text-decoration: none;
|
| 1047 |
+
}
|
| 1048 |
+
table.board tr.linked-row:hover a {
|
| 1049 |
+
color: var(--accent-strong);
|
| 1050 |
+
}
|
| 1051 |
+
|
| 1052 |
+
/* ---- agent read hint ---- */
|
| 1053 |
+
.agent-hint {
|
| 1054 |
+
display: flex;
|
| 1055 |
+
align-items: center;
|
| 1056 |
+
flex-wrap: wrap;
|
| 1057 |
+
gap: 8px;
|
| 1058 |
+
margin: 4px 0 22px;
|
| 1059 |
+
font-size: 12.5px;
|
| 1060 |
+
color: var(--muted);
|
| 1061 |
+
}
|
| 1062 |
+
#page .agent-hint code {
|
| 1063 |
+
background: var(--code-bg);
|
| 1064 |
+
padding: 2px 9px;
|
| 1065 |
+
border-radius: 6px;
|
| 1066 |
+
font-family: var(--mono);
|
| 1067 |
+
font-size: 12px;
|
| 1068 |
+
font-weight: 500;
|
| 1069 |
+
color: var(--ink);
|
| 1070 |
+
}
|
| 1071 |
+
.agent-hint .copy {
|
| 1072 |
+
flex: 0 0 auto;
|
| 1073 |
+
background: none;
|
| 1074 |
+
color: var(--muted);
|
| 1075 |
+
border: 1px solid var(--line);
|
| 1076 |
+
border-radius: 6px;
|
| 1077 |
+
width: 22px;
|
| 1078 |
+
height: 22px;
|
| 1079 |
+
font-size: 11px;
|
| 1080 |
+
line-height: 1;
|
| 1081 |
+
cursor: pointer;
|
| 1082 |
+
transition: color 0.12s, border-color 0.12s;
|
| 1083 |
+
}
|
| 1084 |
+
.agent-hint .copy:hover {
|
| 1085 |
+
color: var(--accent-strong);
|
| 1086 |
+
border-color: var(--accent);
|
| 1087 |
+
}
|
| 1088 |
+
.agent-hint .copy.copied {
|
| 1089 |
+
color: #1a8a55;
|
| 1090 |
+
border-color: #1a8a55;
|
| 1091 |
+
}
|
| 1092 |
+
.agent-hint-note {
|
| 1093 |
+
margin-left: auto;
|
| 1094 |
+
font-size: 12px;
|
| 1095 |
+
color: var(--muted);
|
| 1096 |
+
}
|
| 1097 |
+
|
| 1098 |
+
/* ---- logbook summary stats ---- */
|
| 1099 |
+
.logbook-stats {
|
| 1100 |
+
display: flex;
|
| 1101 |
+
flex-wrap: wrap;
|
| 1102 |
+
gap: 12px;
|
| 1103 |
+
margin: 0 0 28px;
|
| 1104 |
+
}
|
| 1105 |
+
.stat-tile {
|
| 1106 |
+
position: relative;
|
| 1107 |
+
display: inline-flex;
|
| 1108 |
+
align-items: center;
|
| 1109 |
+
gap: 11px;
|
| 1110 |
+
border: 1px solid var(--line);
|
| 1111 |
+
background: var(--panel);
|
| 1112 |
+
border-radius: var(--radius);
|
| 1113 |
+
padding: 12px 23px;
|
| 1114 |
+
font: inherit;
|
| 1115 |
+
text-align: left;
|
| 1116 |
+
cursor: pointer;
|
| 1117 |
+
transition: border-color 0.12s, box-shadow 0.12s;
|
| 1118 |
+
}
|
| 1119 |
+
.stat-tile:hover:not([disabled]) {
|
| 1120 |
+
border-color: rgba(249, 115, 22, 0.45);
|
| 1121 |
+
box-shadow: 0 3px 12px rgba(31, 41, 55, 0.06);
|
| 1122 |
+
}
|
| 1123 |
+
.stat-tile:focus-visible {
|
| 1124 |
+
outline: 2px solid var(--accent);
|
| 1125 |
+
outline-offset: 2px;
|
| 1126 |
+
}
|
| 1127 |
+
.stat-tile[disabled] {
|
| 1128 |
+
cursor: default;
|
| 1129 |
+
opacity: 0.7;
|
| 1130 |
+
}
|
| 1131 |
+
.stat-tile.open {
|
| 1132 |
+
border-color: rgba(249, 115, 22, 0.6);
|
| 1133 |
+
box-shadow: 0 3px 12px rgba(31, 41, 55, 0.08);
|
| 1134 |
+
}
|
| 1135 |
+
.stat-icon {
|
| 1136 |
+
width: 24px;
|
| 1137 |
+
height: 24px;
|
| 1138 |
+
flex: 0 0 24px;
|
| 1139 |
+
object-fit: contain;
|
| 1140 |
+
align-self: center;
|
| 1141 |
+
}
|
| 1142 |
+
.stat-text {
|
| 1143 |
+
display: flex;
|
| 1144 |
+
align-items: baseline;
|
| 1145 |
+
gap: 8px;
|
| 1146 |
+
white-space: nowrap;
|
| 1147 |
+
line-height: 1;
|
| 1148 |
+
}
|
| 1149 |
+
.stat-num {
|
| 1150 |
+
font-family: var(--mono);
|
| 1151 |
+
font-size: 20px;
|
| 1152 |
+
font-weight: 600;
|
| 1153 |
+
line-height: 1;
|
| 1154 |
+
color: var(--accent-strong);
|
| 1155 |
+
}
|
| 1156 |
+
.stat-label {
|
| 1157 |
+
font-size: 15px;
|
| 1158 |
+
line-height: 1;
|
| 1159 |
+
color: var(--muted);
|
| 1160 |
+
}
|
| 1161 |
+
.stat-caret {
|
| 1162 |
+
margin-left: 2px;
|
| 1163 |
+
font-size: 10px;
|
| 1164 |
+
color: var(--muted);
|
| 1165 |
+
align-self: center;
|
| 1166 |
+
transition: transform 0.12s;
|
| 1167 |
+
}
|
| 1168 |
+
.stat-tile.open .stat-caret {
|
| 1169 |
+
transform: rotate(180deg);
|
| 1170 |
+
}
|
| 1171 |
+
.stat-popover {
|
| 1172 |
+
position: absolute;
|
| 1173 |
+
top: 100%;
|
| 1174 |
+
left: 0;
|
| 1175 |
+
margin-top: 6px;
|
| 1176 |
+
min-width: 300px;
|
| 1177 |
+
max-width: min(460px, 92vw);
|
| 1178 |
+
max-height: 340px;
|
| 1179 |
+
overflow-y: auto;
|
| 1180 |
+
z-index: 20;
|
| 1181 |
+
background: var(--panel);
|
| 1182 |
+
border: 1px solid var(--line);
|
| 1183 |
+
border-radius: var(--radius);
|
| 1184 |
+
box-shadow: 0 8px 28px rgba(31, 41, 55, 0.12);
|
| 1185 |
+
padding: 6px;
|
| 1186 |
+
}
|
| 1187 |
+
.stat-popover[hidden] {
|
| 1188 |
+
display: none;
|
| 1189 |
+
}
|
| 1190 |
+
.stat-pop-head {
|
| 1191 |
+
padding: 6px 10px 8px;
|
| 1192 |
+
font-size: 11.5px;
|
| 1193 |
+
font-weight: 700;
|
| 1194 |
+
letter-spacing: 0.03em;
|
| 1195 |
+
text-transform: uppercase;
|
| 1196 |
+
color: var(--muted);
|
| 1197 |
+
}
|
| 1198 |
+
.stat-row {
|
| 1199 |
+
display: flex;
|
| 1200 |
+
align-items: flex-start;
|
| 1201 |
+
gap: 10px;
|
| 1202 |
+
padding: 9px 11px;
|
| 1203 |
+
border-radius: 9px;
|
| 1204 |
+
border: 1px solid transparent;
|
| 1205 |
+
text-decoration: none;
|
| 1206 |
+
color: inherit;
|
| 1207 |
+
cursor: pointer;
|
| 1208 |
+
}
|
| 1209 |
+
.stat-row:hover {
|
| 1210 |
+
border-color: rgba(249, 115, 22, 0.4);
|
| 1211 |
+
background: var(--accent-soft);
|
| 1212 |
+
}
|
| 1213 |
+
.stat-row-ico {
|
| 1214 |
+
font-size: 15px;
|
| 1215 |
+
line-height: 1.3;
|
| 1216 |
+
flex: 0 0 auto;
|
| 1217 |
+
}
|
| 1218 |
+
.stat-row-main {
|
| 1219 |
+
min-width: 0;
|
| 1220 |
+
flex: 1;
|
| 1221 |
+
}
|
| 1222 |
+
.stat-row-title {
|
| 1223 |
+
font-family: var(--mono);
|
| 1224 |
+
font-size: 12.5px;
|
| 1225 |
+
font-weight: 600;
|
| 1226 |
+
color: var(--ink);
|
| 1227 |
+
overflow: hidden;
|
| 1228 |
+
text-overflow: ellipsis;
|
| 1229 |
+
white-space: nowrap;
|
| 1230 |
+
}
|
| 1231 |
+
.stat-row-meta {
|
| 1232 |
+
margin-top: 2px;
|
| 1233 |
+
font-size: 12px;
|
| 1234 |
+
color: var(--muted);
|
| 1235 |
+
}
|
| 1236 |
+
.stat-row-state.open {
|
| 1237 |
+
color: var(--accent);
|
| 1238 |
+
font-weight: 600;
|
| 1239 |
+
border-radius: 5px;
|
| 1240 |
+
padding: 1px 5px;
|
| 1241 |
+
margin: -1px -2px;
|
| 1242 |
+
}
|
| 1243 |
+
.stat-row-state.open:hover {
|
| 1244 |
+
background: rgba(249, 115, 22, 0.14);
|
| 1245 |
+
text-decoration: underline;
|
| 1246 |
+
}
|
| 1247 |
+
.art-ico {
|
| 1248 |
+
width: 1em;
|
| 1249 |
+
height: 1em;
|
| 1250 |
+
object-fit: contain;
|
| 1251 |
+
vertical-align: -0.15em;
|
| 1252 |
+
}
|
| 1253 |
+
|
| 1254 |
+
/* ---- scroll-to-resource highlight ---- */
|
| 1255 |
+
.res-flash {
|
| 1256 |
+
animation: res-flash 1.5s ease;
|
| 1257 |
+
border-radius: 8px;
|
| 1258 |
+
}
|
| 1259 |
+
@keyframes res-flash {
|
| 1260 |
+
0%,
|
| 1261 |
+
25% {
|
| 1262 |
+
box-shadow: 0 0 0 3px var(--accent);
|
| 1263 |
+
}
|
| 1264 |
+
100% {
|
| 1265 |
+
box-shadow: 0 0 0 3px rgba(249, 115, 22, 0);
|
| 1266 |
+
}
|
| 1267 |
+
}
|
| 1268 |
+
|
| 1269 |
+
/* ---- inline resource chips ---- */
|
| 1270 |
+
#page .res-chip {
|
| 1271 |
+
display: inline-flex;
|
| 1272 |
+
align-items: center;
|
| 1273 |
+
gap: 5px;
|
| 1274 |
+
max-width: 100%;
|
| 1275 |
+
padding: 0 9px 0 6px;
|
| 1276 |
+
margin: 0 1px;
|
| 1277 |
+
border: 1px solid var(--line);
|
| 1278 |
+
border-radius: 999px;
|
| 1279 |
+
background: var(--panel);
|
| 1280 |
+
font-family: var(--mono);
|
| 1281 |
+
font-size: 0.78em;
|
| 1282 |
+
font-weight: 600;
|
| 1283 |
+
color: var(--ink);
|
| 1284 |
+
text-decoration: none;
|
| 1285 |
+
white-space: nowrap;
|
| 1286 |
+
overflow: hidden;
|
| 1287 |
+
text-overflow: ellipsis;
|
| 1288 |
+
vertical-align: middle;
|
| 1289 |
+
line-height: 1.65;
|
| 1290 |
+
transform: translateY(-0.08em);
|
| 1291 |
+
transition: border-color 0.12s, background 0.12s, color 0.12s;
|
| 1292 |
+
}
|
| 1293 |
+
.res-chip-ico {
|
| 1294 |
+
font-size: 1.05em;
|
| 1295 |
+
line-height: 1;
|
| 1296 |
+
}
|
| 1297 |
+
#page .res-chip:hover,
|
| 1298 |
+
#page .res-chip.res-hl {
|
| 1299 |
+
border-color: var(--accent);
|
| 1300 |
+
background: var(--accent-soft);
|
| 1301 |
+
color: var(--accent-strong);
|
| 1302 |
+
}
|
| 1303 |
+
#page a.res-link.res-hl {
|
| 1304 |
+
background: var(--accent-soft);
|
| 1305 |
+
border-radius: 4px;
|
| 1306 |
+
}
|
| 1307 |
+
.rail-item.res-hl {
|
| 1308 |
+
border-color: var(--accent);
|
| 1309 |
+
background: var(--accent-soft);
|
| 1310 |
+
box-shadow: 0 3px 12px rgba(249, 115, 22, 0.14);
|
| 1311 |
+
}
|
| 1312 |
+
.rail-item.res-hl .rail-title {
|
| 1313 |
+
color: var(--accent-strong);
|
| 1314 |
+
}
|
| 1315 |
+
.rail-item.rail-local {
|
| 1316 |
+
cursor: default;
|
| 1317 |
+
}
|
| 1318 |
+
.artifact-chip.res-hl {
|
| 1319 |
+
border-color: var(--accent);
|
| 1320 |
+
background: var(--accent-soft);
|
| 1321 |
+
}
|
| 1322 |
+
|
| 1323 |
+
/* ---- contextual resources rail ---- */
|
| 1324 |
+
.context-rail {
|
| 1325 |
+
position: relative;
|
| 1326 |
+
width: 248px;
|
| 1327 |
+
}
|
| 1328 |
+
.context-rail[hidden] {
|
| 1329 |
+
display: none;
|
| 1330 |
+
}
|
| 1331 |
+
.rail-kind {
|
| 1332 |
+
display: flex;
|
| 1333 |
+
align-items: center;
|
| 1334 |
+
gap: 5px;
|
| 1335 |
+
font-family: var(--mono);
|
| 1336 |
+
font-size: 10px;
|
| 1337 |
+
text-transform: uppercase;
|
| 1338 |
+
letter-spacing: 0.08em;
|
| 1339 |
+
font-weight: 600;
|
| 1340 |
+
color: var(--accent);
|
| 1341 |
+
margin-bottom: 4px;
|
| 1342 |
+
}
|
| 1343 |
+
.rail-item {
|
| 1344 |
+
position: absolute;
|
| 1345 |
+
left: 0;
|
| 1346 |
+
right: 0;
|
| 1347 |
+
display: block;
|
| 1348 |
+
border: 1px solid var(--line);
|
| 1349 |
+
border-radius: 10px;
|
| 1350 |
+
background: var(--panel);
|
| 1351 |
+
padding: 9px 12px;
|
| 1352 |
+
margin-bottom: 8px;
|
| 1353 |
+
text-decoration: none;
|
| 1354 |
+
color: inherit;
|
| 1355 |
+
transition: border-color 0.14s, box-shadow 0.14s;
|
| 1356 |
+
}
|
| 1357 |
+
.rail-item:hover {
|
| 1358 |
+
border-color: rgba(249, 115, 22, 0.45);
|
| 1359 |
+
box-shadow: 0 3px 12px rgba(31, 41, 55, 0.06);
|
| 1360 |
+
}
|
| 1361 |
+
.rail-title {
|
| 1362 |
+
font-family: var(--mono);
|
| 1363 |
+
font-size: 12.5px;
|
| 1364 |
+
font-weight: 600;
|
| 1365 |
+
color: var(--ink);
|
| 1366 |
+
overflow-wrap: anywhere;
|
| 1367 |
+
line-height: 1.4;
|
| 1368 |
+
}
|
| 1369 |
+
.rail-item:hover .rail-title {
|
| 1370 |
+
color: var(--accent-strong);
|
| 1371 |
+
}
|
| 1372 |
+
.rail-meta {
|
| 1373 |
+
font-size: 11.5px;
|
| 1374 |
+
color: var(--muted);
|
| 1375 |
+
margin-top: 2px;
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
@media (max-width: 1400px) {
|
| 1379 |
+
.page-layout {
|
| 1380 |
+
display: block;
|
| 1381 |
+
}
|
| 1382 |
+
.context-rail {
|
| 1383 |
+
width: 100%;
|
| 1384 |
+
margin-top: 28px;
|
| 1385 |
+
position: static;
|
| 1386 |
+
min-height: 0 !important;
|
| 1387 |
+
display: grid;
|
| 1388 |
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
| 1389 |
+
gap: 10px;
|
| 1390 |
+
}
|
| 1391 |
+
.context-rail[hidden] {
|
| 1392 |
+
display: none;
|
| 1393 |
+
}
|
| 1394 |
+
.context-rail .rail-item {
|
| 1395 |
+
position: static;
|
| 1396 |
+
margin-bottom: 0;
|
| 1397 |
+
}
|
| 1398 |
+
}
|
| 1399 |
+
|
| 1400 |
+
/* ---- connect footer + modal ---- */
|
| 1401 |
+
#sidebar-foot {
|
| 1402 |
+
margin-top: auto;
|
| 1403 |
+
padding-top: 14px;
|
| 1404 |
+
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
| 1405 |
+
}
|
| 1406 |
+
|
| 1407 |
+
#connect-btn {
|
| 1408 |
+
width: 100%;
|
| 1409 |
+
display: flex;
|
| 1410 |
+
align-items: center;
|
| 1411 |
+
gap: 8px;
|
| 1412 |
+
background: rgba(255, 255, 255, 0.05);
|
| 1413 |
+
color: #c3c4cb;
|
| 1414 |
+
border: 1px solid rgba(255, 255, 255, 0.12);
|
| 1415 |
+
border-radius: 9px;
|
| 1416 |
+
padding: 9px 12px;
|
| 1417 |
+
font-size: 13.5px;
|
| 1418 |
+
font-family: var(--sans);
|
| 1419 |
+
cursor: pointer;
|
| 1420 |
+
transition: background 0.12s, color 0.12s, border-color 0.12s;
|
| 1421 |
+
}
|
| 1422 |
+
#connect-btn:hover {
|
| 1423 |
+
background: rgba(249, 115, 22, 0.14);
|
| 1424 |
+
border-color: rgba(249, 115, 22, 0.4);
|
| 1425 |
+
color: #fdba74;
|
| 1426 |
+
}
|
| 1427 |
+
#connect-btn .ico {
|
| 1428 |
+
font-size: 15px;
|
| 1429 |
+
}
|
| 1430 |
+
|
| 1431 |
+
#modal[hidden] {
|
| 1432 |
+
display: none;
|
| 1433 |
+
}
|
| 1434 |
+
#modal {
|
| 1435 |
+
position: fixed;
|
| 1436 |
+
inset: 0;
|
| 1437 |
+
z-index: 100;
|
| 1438 |
+
display: flex;
|
| 1439 |
+
align-items: center;
|
| 1440 |
+
justify-content: center;
|
| 1441 |
+
padding: 24px;
|
| 1442 |
+
}
|
| 1443 |
+
.modal-backdrop {
|
| 1444 |
+
position: absolute;
|
| 1445 |
+
inset: 0;
|
| 1446 |
+
background: rgba(20, 18, 30, 0.5);
|
| 1447 |
+
backdrop-filter: blur(2px);
|
| 1448 |
+
}
|
| 1449 |
+
.modal-card {
|
| 1450 |
+
position: relative;
|
| 1451 |
+
background: var(--panel);
|
| 1452 |
+
border-radius: 16px;
|
| 1453 |
+
width: 100%;
|
| 1454 |
+
max-width: 620px;
|
| 1455 |
+
max-height: 85vh;
|
| 1456 |
+
overflow-y: auto;
|
| 1457 |
+
box-shadow: 0 24px 70px rgba(20, 15, 50, 0.28);
|
| 1458 |
+
}
|
| 1459 |
+
.modal-head {
|
| 1460 |
+
display: flex;
|
| 1461 |
+
align-items: center;
|
| 1462 |
+
justify-content: space-between;
|
| 1463 |
+
gap: 12px;
|
| 1464 |
+
padding: 18px 22px;
|
| 1465 |
+
border-bottom: 1px solid var(--line);
|
| 1466 |
+
position: sticky;
|
| 1467 |
+
top: 0;
|
| 1468 |
+
background: var(--panel);
|
| 1469 |
+
}
|
| 1470 |
+
.modal-title {
|
| 1471 |
+
display: flex;
|
| 1472 |
+
align-items: center;
|
| 1473 |
+
gap: 10px;
|
| 1474 |
+
font-family: var(--serif);
|
| 1475 |
+
font-size: 21px;
|
| 1476 |
+
letter-spacing: -0.01em;
|
| 1477 |
+
}
|
| 1478 |
+
.modal-logo {
|
| 1479 |
+
width: 26px;
|
| 1480 |
+
height: 26px;
|
| 1481 |
+
object-fit: contain;
|
| 1482 |
+
}
|
| 1483 |
+
.modal-actions {
|
| 1484 |
+
display: flex;
|
| 1485 |
+
align-items: center;
|
| 1486 |
+
gap: 8px;
|
| 1487 |
+
}
|
| 1488 |
+
.btn {
|
| 1489 |
+
font-family: var(--sans);
|
| 1490 |
+
font-size: 13.5px;
|
| 1491 |
+
font-weight: 600;
|
| 1492 |
+
border: 1px solid var(--line);
|
| 1493 |
+
background: var(--panel);
|
| 1494 |
+
color: var(--ink);
|
| 1495 |
+
border-radius: 9px;
|
| 1496 |
+
padding: 8px 13px;
|
| 1497 |
+
cursor: pointer;
|
| 1498 |
+
transition: background 0.12s, border-color 0.12s, color 0.12s;
|
| 1499 |
+
}
|
| 1500 |
+
.btn:hover {
|
| 1501 |
+
border-color: var(--accent);
|
| 1502 |
+
color: var(--accent-strong);
|
| 1503 |
+
}
|
| 1504 |
+
.btn.copied {
|
| 1505 |
+
border-color: #1a8a55;
|
| 1506 |
+
color: #1a8a55;
|
| 1507 |
+
}
|
| 1508 |
+
.btn.icon {
|
| 1509 |
+
font-size: 18px;
|
| 1510 |
+
line-height: 1;
|
| 1511 |
+
padding: 6px 11px;
|
| 1512 |
+
font-weight: 400;
|
| 1513 |
+
}
|
| 1514 |
+
.modal-body {
|
| 1515 |
+
padding: 20px 22px 26px;
|
| 1516 |
+
}
|
| 1517 |
+
.modal-intro {
|
| 1518 |
+
margin: 0 0 20px;
|
| 1519 |
+
color: var(--muted);
|
| 1520 |
+
line-height: 1.55;
|
| 1521 |
+
}
|
| 1522 |
+
#connect-steps {
|
| 1523 |
+
list-style: none;
|
| 1524 |
+
margin: 0;
|
| 1525 |
+
padding: 0;
|
| 1526 |
+
}
|
| 1527 |
+
#connect-steps li {
|
| 1528 |
+
margin-bottom: 18px;
|
| 1529 |
+
}
|
| 1530 |
+
.step-title {
|
| 1531 |
+
font-weight: 600;
|
| 1532 |
+
font-size: 14.5px;
|
| 1533 |
+
margin-bottom: 8px;
|
| 1534 |
+
}
|
| 1535 |
+
.codeblock {
|
| 1536 |
+
display: flex;
|
| 1537 |
+
align-items: center;
|
| 1538 |
+
gap: 8px;
|
| 1539 |
+
background: #17181c;
|
| 1540 |
+
border-radius: 10px;
|
| 1541 |
+
padding: 11px 12px 11px 15px;
|
| 1542 |
+
}
|
| 1543 |
+
.codeblock code {
|
| 1544 |
+
flex: 1;
|
| 1545 |
+
min-width: 0;
|
| 1546 |
+
overflow-x: auto;
|
| 1547 |
+
white-space: nowrap;
|
| 1548 |
+
font-family: var(--mono);
|
| 1549 |
+
font-size: 13px;
|
| 1550 |
+
color: #f0efff;
|
| 1551 |
+
background: none;
|
| 1552 |
+
padding: 0;
|
| 1553 |
+
}
|
| 1554 |
+
.codeblock .copy {
|
| 1555 |
+
flex: 0 0 auto;
|
| 1556 |
+
background: rgba(255, 255, 255, 0.08);
|
| 1557 |
+
color: #c3c4cb;
|
| 1558 |
+
border: 1px solid rgba(255, 255, 255, 0.14);
|
| 1559 |
+
border-radius: 7px;
|
| 1560 |
+
width: 30px;
|
| 1561 |
+
height: 30px;
|
| 1562 |
+
font-size: 14px;
|
| 1563 |
+
cursor: pointer;
|
| 1564 |
+
transition: background 0.12s, color 0.12s;
|
| 1565 |
+
}
|
| 1566 |
+
.codeblock .copy:hover {
|
| 1567 |
+
background: rgba(249, 115, 22, 0.2);
|
| 1568 |
+
color: #fdba74;
|
| 1569 |
+
}
|
| 1570 |
+
.codeblock .copy.copied {
|
| 1571 |
+
color: #52d08a;
|
| 1572 |
+
}
|
| 1573 |
+
|
| 1574 |
+
@media (max-width: 720px) {
|
| 1575 |
+
#app {
|
| 1576 |
+
flex-direction: column;
|
| 1577 |
+
}
|
| 1578 |
+
#sidebar {
|
| 1579 |
+
width: 100%;
|
| 1580 |
+
flex: none;
|
| 1581 |
+
height: auto;
|
| 1582 |
+
position: static;
|
| 1583 |
+
}
|
| 1584 |
+
#content {
|
| 1585 |
+
display: block;
|
| 1586 |
+
width: 100%;
|
| 1587 |
+
padding: 28px 20px 80px;
|
| 1588 |
+
overflow-x: hidden;
|
| 1589 |
+
}
|
| 1590 |
+
#page {
|
| 1591 |
+
width: 100%;
|
| 1592 |
+
max-width: 100%;
|
| 1593 |
+
}
|
| 1594 |
+
#page h1 {
|
| 1595 |
+
font-size: 30px;
|
| 1596 |
+
}
|
| 1597 |
+
.cell-head {
|
| 1598 |
+
align-items: flex-start;
|
| 1599 |
+
flex-direction: column;
|
| 1600 |
+
gap: 4px;
|
| 1601 |
+
}
|
| 1602 |
+
}
|
logbook.js
ADDED
|
@@ -0,0 +1,2275 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
(function () {
|
| 2 |
+
"use strict";
|
| 3 |
+
|
| 4 |
+
let MANIFEST = null;
|
| 5 |
+
const PAGE_CACHE = {};
|
| 6 |
+
const UNFURL_CACHE = {};
|
| 7 |
+
const LIVE_RELOAD_MS = 1500;
|
| 8 |
+
const FIGURE_FRAME_WINDOWS = new Set();
|
| 9 |
+
let FIGURE_NAVIGATION_READY = false;
|
| 10 |
+
|
| 11 |
+
function esc(s) {
|
| 12 |
+
return String(s)
|
| 13 |
+
.replace(/&/g, "&")
|
| 14 |
+
.replace(/</g, "<")
|
| 15 |
+
.replace(/>/g, ">")
|
| 16 |
+
.replace(/"/g, """)
|
| 17 |
+
.replace(/'/g, "'");
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
function flattenTree(node, depth, acc) {
|
| 21 |
+
acc.push({ node: node, depth: depth });
|
| 22 |
+
(node.children || []).forEach((c) => flattenTree(c, depth + 1, acc));
|
| 23 |
+
return acc;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
function findNode(node, slug) {
|
| 27 |
+
if (node.slug === slug) return node;
|
| 28 |
+
for (const c of node.children || []) {
|
| 29 |
+
const hit = findNode(c, slug);
|
| 30 |
+
if (hit) return hit;
|
| 31 |
+
}
|
| 32 |
+
return null;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
/* -------------------- minimal markdown -------------------- */
|
| 36 |
+
|
| 37 |
+
function inline(text) {
|
| 38 |
+
let t = esc(text);
|
| 39 |
+
t = t.replace(/`([^`]+)`/g, (_, c) => `<code>${c}</code>`);
|
| 40 |
+
t = t.replace(/\*\*([^*]+)\*\*/g, (_, c) => `<strong>${c}</strong>`);
|
| 41 |
+
t = t.replace(/\[([^\]]+)\]\(([^)]+)\)/g, (_, txt, url) => {
|
| 42 |
+
const safe = esc(url);
|
| 43 |
+
const attrs = /^https?:/.test(url) ? ' target="_blank" rel="noopener"' : "";
|
| 44 |
+
const item = /^https?:/.test(url) ? classifyResource(url) : null;
|
| 45 |
+
const data = item
|
| 46 |
+
? ` class="res-link" data-res-url="${esc(item.url)}"`
|
| 47 |
+
: "";
|
| 48 |
+
return `<a href="${safe}"${attrs}${data}>${txt}</a>`;
|
| 49 |
+
});
|
| 50 |
+
t = t.replace(/(^|[\s(])(https?:\/\/[^\s<>)"'`]+)/g, (m, pre, url) => {
|
| 51 |
+
let rest = "";
|
| 52 |
+
const cut = url.search(/"|'|<|>/);
|
| 53 |
+
if (cut !== -1) {
|
| 54 |
+
rest = url.slice(cut);
|
| 55 |
+
url = url.slice(0, cut);
|
| 56 |
+
}
|
| 57 |
+
const trailing = (url.match(/[.,;:!?`]+$/) || [""])[0];
|
| 58 |
+
const clean = trailing ? url.slice(0, -trailing.length) : url;
|
| 59 |
+
if (!clean) return m;
|
| 60 |
+
const item = classifyResource(clean);
|
| 61 |
+
if (item) return `${pre}${resChipHtml(item)}${trailing}${rest}`;
|
| 62 |
+
return `${pre}<a href="${clean}" target="_blank" rel="noopener">${clean}</a>${trailing}${rest}`;
|
| 63 |
+
});
|
| 64 |
+
return t;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
function resChipHtml(item) {
|
| 68 |
+
return (
|
| 69 |
+
`<a class="res-chip" href="${esc(item.url)}" target="_blank" ` +
|
| 70 |
+
`rel="noopener" data-res-url="${esc(item.url)}">` +
|
| 71 |
+
`<span class="res-chip-ico">${RESOURCE_ICONS[item.kind]}</span>` +
|
| 72 |
+
`${esc(item.id)}</a>`
|
| 73 |
+
);
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
const URL_ONLY = /^(https?:\/\/[^\s]+)$/;
|
| 77 |
+
const DETECTED_URL =
|
| 78 |
+
/(https?:\/\/[^\s<>)\]"'`]+|trackio-local-dashboard:\/\/[^\s<>)\]"'`]+|trackio-artifact:\/\/[^\s<>)\]"'`]+|trackio-local-path:\/\/[^\s<>)\]"'`]+)/g;
|
| 79 |
+
|
| 80 |
+
function renderMarkdown(md, container) {
|
| 81 |
+
const cellRe = /(^|\n)---\n<!-- trackio-cell\n([\s\S]*?)\n-->\n([\s\S]*?)(?=\n---\n<!-- trackio-cell\n|\s*$)/g;
|
| 82 |
+
const tokens = [];
|
| 83 |
+
let pos = 0;
|
| 84 |
+
let found = false;
|
| 85 |
+
let match;
|
| 86 |
+
while ((match = cellRe.exec(md))) {
|
| 87 |
+
found = true;
|
| 88 |
+
tokens.push({
|
| 89 |
+
kind: "md",
|
| 90 |
+
text: md.slice(pos, match.index + match[1].length),
|
| 91 |
+
});
|
| 92 |
+
tokens.push({
|
| 93 |
+
kind: "cell",
|
| 94 |
+
meta: parseCellMeta(match[2]),
|
| 95 |
+
body: match[3],
|
| 96 |
+
});
|
| 97 |
+
pos = match.index + match[0].length;
|
| 98 |
+
}
|
| 99 |
+
tokens.push({ kind: "md", text: found ? md.slice(pos) : md });
|
| 100 |
+
|
| 101 |
+
for (let i = 0; i < tokens.length; i++) {
|
| 102 |
+
const t = tokens[i];
|
| 103 |
+
if (t.kind === "md") {
|
| 104 |
+
renderMarkdownPlain(t.text, container);
|
| 105 |
+
continue;
|
| 106 |
+
}
|
| 107 |
+
if (t.consumed) continue;
|
| 108 |
+
if (t.meta.type === "code") {
|
| 109 |
+
const arts = [];
|
| 110 |
+
for (let j = i + 1; j < tokens.length; j++) {
|
| 111 |
+
const n = tokens[j];
|
| 112 |
+
if (n.kind === "md") {
|
| 113 |
+
if (n.text.trim() === "") continue;
|
| 114 |
+
break;
|
| 115 |
+
}
|
| 116 |
+
if (n.meta.type === "artifact") {
|
| 117 |
+
arts.push(n);
|
| 118 |
+
n.consumed = true;
|
| 119 |
+
continue;
|
| 120 |
+
}
|
| 121 |
+
break;
|
| 122 |
+
}
|
| 123 |
+
renderCell(t.meta, t.body, container, arts);
|
| 124 |
+
} else {
|
| 125 |
+
renderCell(t.meta, t.body, container);
|
| 126 |
+
}
|
| 127 |
+
}
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
function parseCellMeta(raw) {
|
| 131 |
+
try {
|
| 132 |
+
return JSON.parse(raw);
|
| 133 |
+
} catch (e) {
|
| 134 |
+
return { type: "markdown", title: "Note" };
|
| 135 |
+
}
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
function renderMarkdownPlain(md, container) {
|
| 139 |
+
const lines = md.replace(/<!--[\s\S]*?-->/g, "").split("\n");
|
| 140 |
+
let i = 0;
|
| 141 |
+
let para = [];
|
| 142 |
+
|
| 143 |
+
function flushPara() {
|
| 144 |
+
if (!para.length) return;
|
| 145 |
+
const joined = para.join(" ").trim();
|
| 146 |
+
para = [];
|
| 147 |
+
if (!joined) return;
|
| 148 |
+
if (/^trackio-artifact:\/\/\S+$/.test(joined)) return;
|
| 149 |
+
if (/^trackio-local-path:\/\/\S+$/.test(joined)) return;
|
| 150 |
+
if (joined.indexOf("📦 Artifact") !== -1) {
|
| 151 |
+
const div = document.createElement("div");
|
| 152 |
+
div.className = "artifact-chip";
|
| 153 |
+
div.innerHTML = ARTIFACT_ICON_IMG + inline(joined.replace(/📦\s*/, ""));
|
| 154 |
+
container.appendChild(div);
|
| 155 |
+
return;
|
| 156 |
+
}
|
| 157 |
+
if (URL_ONLY.test(joined) || IMG_PATH.test(joined)) {
|
| 158 |
+
const el = renderStandaloneUrl(joined);
|
| 159 |
+
if (el) container.appendChild(el);
|
| 160 |
+
return;
|
| 161 |
+
}
|
| 162 |
+
const p = document.createElement("p");
|
| 163 |
+
p.innerHTML = inline(joined);
|
| 164 |
+
container.appendChild(p);
|
| 165 |
+
}
|
| 166 |
+
|
| 167 |
+
while (i < lines.length) {
|
| 168 |
+
const line = lines[i];
|
| 169 |
+
const trimmed = line.trim();
|
| 170 |
+
|
| 171 |
+
if (trimmed === "") {
|
| 172 |
+
flushPara();
|
| 173 |
+
i++;
|
| 174 |
+
continue;
|
| 175 |
+
}
|
| 176 |
+
const fence = trimmed.match(/^(`{3,}|~{3,})(.*)$/);
|
| 177 |
+
if (fence) {
|
| 178 |
+
flushPara();
|
| 179 |
+
const marker = fence[1][0];
|
| 180 |
+
const closeRe = new RegExp("^" + marker + "{" + fence[1].length + ",}\\s*$");
|
| 181 |
+
const info = fence[2].trim();
|
| 182 |
+
const buf = [];
|
| 183 |
+
i++;
|
| 184 |
+
while (i < lines.length && !closeRe.test(lines[i].trim())) {
|
| 185 |
+
buf.push(lines[i]);
|
| 186 |
+
i++;
|
| 187 |
+
}
|
| 188 |
+
i++;
|
| 189 |
+
const lang = (info.split(/\s+/)[0] || "").toLowerCase();
|
| 190 |
+
const tm = info.match(/title=(\S+)/);
|
| 191 |
+
container.appendChild(
|
| 192 |
+
renderCode(buf.join("\n"), lang, tm ? tm[1] : null)
|
| 193 |
+
);
|
| 194 |
+
continue;
|
| 195 |
+
}
|
| 196 |
+
if (trimmed === "---") {
|
| 197 |
+
flushPara();
|
| 198 |
+
container.appendChild(document.createElement("hr"));
|
| 199 |
+
i++;
|
| 200 |
+
continue;
|
| 201 |
+
}
|
| 202 |
+
const h = trimmed.match(/^(#{1,4})\s+(.*)$/);
|
| 203 |
+
if (h) {
|
| 204 |
+
flushPara();
|
| 205 |
+
const el = document.createElement("h" + h[1].length);
|
| 206 |
+
el.innerHTML = inline(h[2]);
|
| 207 |
+
container.appendChild(el);
|
| 208 |
+
i++;
|
| 209 |
+
continue;
|
| 210 |
+
}
|
| 211 |
+
if (
|
| 212 |
+
trimmed.startsWith("|") &&
|
| 213 |
+
i + 1 < lines.length &&
|
| 214 |
+
/^\|?[\s:|-]*-{2,}[\s:|-]*\|?$/.test(lines[i + 1].trim())
|
| 215 |
+
) {
|
| 216 |
+
flushPara();
|
| 217 |
+
const rows = [];
|
| 218 |
+
while (i < lines.length && lines[i].trim().startsWith("|")) {
|
| 219 |
+
rows.push(parseRow(lines[i].trim()));
|
| 220 |
+
i++;
|
| 221 |
+
}
|
| 222 |
+
renderTable(rows, container);
|
| 223 |
+
continue;
|
| 224 |
+
}
|
| 225 |
+
if (trimmed.startsWith("> ")) {
|
| 226 |
+
flushPara();
|
| 227 |
+
const bq = document.createElement("blockquote");
|
| 228 |
+
bq.innerHTML = inline(trimmed.slice(2));
|
| 229 |
+
container.appendChild(bq);
|
| 230 |
+
i++;
|
| 231 |
+
continue;
|
| 232 |
+
}
|
| 233 |
+
if (/^`[^`]+`$/.test(trimmed)) {
|
| 234 |
+
flushPara();
|
| 235 |
+
const el = document.createElement("div");
|
| 236 |
+
el.className = "ts";
|
| 237 |
+
el.textContent = trimmed.replace(/`/g, "");
|
| 238 |
+
container.appendChild(el);
|
| 239 |
+
i++;
|
| 240 |
+
continue;
|
| 241 |
+
}
|
| 242 |
+
if (trimmed.startsWith("- ")) {
|
| 243 |
+
flushPara();
|
| 244 |
+
const items = [];
|
| 245 |
+
while (i < lines.length && lines[i].trim().startsWith("- ")) {
|
| 246 |
+
items.push(lines[i].trim().slice(2).trim());
|
| 247 |
+
i++;
|
| 248 |
+
}
|
| 249 |
+
renderList(items, container);
|
| 250 |
+
continue;
|
| 251 |
+
}
|
| 252 |
+
para.push(trimmed);
|
| 253 |
+
i++;
|
| 254 |
+
}
|
| 255 |
+
flushPara();
|
| 256 |
+
}
|
| 257 |
+
|
| 258 |
+
function renderCell(meta, body, container, artifacts) {
|
| 259 |
+
const cell = document.createElement("section");
|
| 260 |
+
cell.className = `cell ${meta.type || "markdown"}`;
|
| 261 |
+
if (meta.id) cell.dataset.cellId = meta.id;
|
| 262 |
+
if (isPinned(meta)) cell.classList.add("pinned-source");
|
| 263 |
+
|
| 264 |
+
const head = document.createElement("div");
|
| 265 |
+
head.className = "cell-head";
|
| 266 |
+
const rawTitle = (meta.title || "").trim();
|
| 267 |
+
const title = rawTitle && rawTitle.toLowerCase() !== "untitled" ? esc(rawTitle) : "";
|
| 268 |
+
const when = meta.created_at ? `<span>${esc(formatTime(meta.created_at))}</span>` : "";
|
| 269 |
+
head.innerHTML =
|
| 270 |
+
(title ? `<div class="cell-title">${title}</div>` : "") +
|
| 271 |
+
`<div class="cell-meta">${when}</div>`;
|
| 272 |
+
if (!title) head.classList.add("no-title");
|
| 273 |
+
cell.appendChild(head);
|
| 274 |
+
|
| 275 |
+
const bodyEl = document.createElement("div");
|
| 276 |
+
bodyEl.className = "cell-body";
|
| 277 |
+
if (meta.type === "code") {
|
| 278 |
+
renderCodeCell(body, bodyEl, artifacts);
|
| 279 |
+
} else if (meta.type === "figure") {
|
| 280 |
+
cell.dataset.resUrl = `trackio-figure://${(meta.title || "Figure").trim()}`;
|
| 281 |
+
renderFigureCell(body, bodyEl, head);
|
| 282 |
+
} else if (meta.type === "artifact") {
|
| 283 |
+
renderMarkdownPlain(body, bodyEl);
|
| 284 |
+
const chip = bodyEl.querySelector(".artifact-chip");
|
| 285 |
+
const uri = body.match(
|
| 286 |
+
/(trackio-artifact:\/\/\S+|trackio-local-path:\/\/\S+|https:\/\/huggingface\.co\/buckets\/[^\s<)]+#\S+)/
|
| 287 |
+
);
|
| 288 |
+
if (chip && uri) chip.dataset.resUrl = uri[1];
|
| 289 |
+
} else if (meta.type === "dashboard") {
|
| 290 |
+
const sp = body.match(/https:\/\/huggingface\.co\/spaces\/[^\s<>)"'`]+/);
|
| 291 |
+
cell.dataset.resUrl = sp
|
| 292 |
+
? sp[0]
|
| 293 |
+
: `trackio-local-dashboard://${(meta.dashboard_project || "").trim()}`;
|
| 294 |
+
renderDashboardCell(meta, body, bodyEl, head);
|
| 295 |
+
} else {
|
| 296 |
+
const cleaned = stripDuplicateTitle(body, meta.title);
|
| 297 |
+
renderMarkdownPlain(cleaned, bodyEl);
|
| 298 |
+
renderDetectedEmbeds(cleaned, bodyEl);
|
| 299 |
+
}
|
| 300 |
+
cell.appendChild(bodyEl);
|
| 301 |
+
container.appendChild(cell);
|
| 302 |
+
return cell;
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
function isPinned(meta) {
|
| 306 |
+
return Boolean(meta && (meta.pinned === true || meta.pinned === "true"));
|
| 307 |
+
}
|
| 308 |
+
|
| 309 |
+
function stripDuplicateTitle(body, title) {
|
| 310 |
+
if (!title) return body;
|
| 311 |
+
const m = body.match(/^\s*#{1,6}\s+([^\n]+)\n?/);
|
| 312 |
+
if (!m) return body;
|
| 313 |
+
const norm = (s) =>
|
| 314 |
+
s
|
| 315 |
+
.toLowerCase()
|
| 316 |
+
.replace(/[*_`#]/g, "")
|
| 317 |
+
.replace(/\s+/g, " ")
|
| 318 |
+
.trim();
|
| 319 |
+
return norm(m[1]) === norm(title) ? body.slice(m[0].length) : body;
|
| 320 |
+
}
|
| 321 |
+
|
| 322 |
+
function formatTime(iso) {
|
| 323 |
+
const d = new Date(iso);
|
| 324 |
+
if (Number.isNaN(d.getTime())) return iso;
|
| 325 |
+
return d.toLocaleString(undefined, {
|
| 326 |
+
month: "short",
|
| 327 |
+
day: "numeric",
|
| 328 |
+
hour: "2-digit",
|
| 329 |
+
minute: "2-digit",
|
| 330 |
+
});
|
| 331 |
+
}
|
| 332 |
+
|
| 333 |
+
function parseFences(text) {
|
| 334 |
+
const fenceRe = /(`{3,4}|~{3,4})([^\n]*)\n([\s\S]*?)\n\1/g;
|
| 335 |
+
const parts = [];
|
| 336 |
+
let pos = 0;
|
| 337 |
+
let match;
|
| 338 |
+
while ((match = fenceRe.exec(text))) {
|
| 339 |
+
if (match.index > pos) {
|
| 340 |
+
parts.push({ kind: "text", text: text.slice(pos, match.index) });
|
| 341 |
+
}
|
| 342 |
+
const info = match[2].trim();
|
| 343 |
+
const lang = (info.split(/\s+/)[0] || "").toLowerCase();
|
| 344 |
+
const titleMatch = info.match(/title=(\S+)/);
|
| 345 |
+
parts.push({
|
| 346 |
+
kind: lang === "result" || lang === "output" ? "output" : "code",
|
| 347 |
+
lang,
|
| 348 |
+
title: titleMatch ? titleMatch[1] : null,
|
| 349 |
+
text: match[3],
|
| 350 |
+
});
|
| 351 |
+
pos = match.index + match[0].length;
|
| 352 |
+
}
|
| 353 |
+
if (pos < text.length) parts.push({ kind: "text", text: text.slice(pos) });
|
| 354 |
+
return parts;
|
| 355 |
+
}
|
| 356 |
+
|
| 357 |
+
function fitFigureFrame(frame, wrap) {
|
| 358 |
+
let doc;
|
| 359 |
+
try {
|
| 360 |
+
doc = frame.contentDocument;
|
| 361 |
+
} catch (e) {
|
| 362 |
+
return;
|
| 363 |
+
}
|
| 364 |
+
if (!doc || !doc.body) return;
|
| 365 |
+
frame.style.transform = "none";
|
| 366 |
+
frame.style.width = "100%";
|
| 367 |
+
frame.style.height = "auto";
|
| 368 |
+
frame.style.position = "";
|
| 369 |
+
frame.style.left = "";
|
| 370 |
+
frame.style.top = "";
|
| 371 |
+
const avail = wrap.clientWidth;
|
| 372 |
+
const isFullscreen =
|
| 373 |
+
document.fullscreenElement === wrap ||
|
| 374 |
+
document.webkitFullscreenElement === wrap;
|
| 375 |
+
const availHeight = isFullscreen ? wrap.clientHeight : Infinity;
|
| 376 |
+
const cw = Math.max(doc.body.scrollWidth, doc.documentElement.scrollWidth, 1);
|
| 377 |
+
const ch = Math.max(doc.body.scrollHeight, doc.documentElement.scrollHeight, 1);
|
| 378 |
+
const scale = Math.min(avail / cw, availHeight / ch);
|
| 379 |
+
if (avail && scale < 1 - 1e-3) {
|
| 380 |
+
frame.style.width = `${cw}px`;
|
| 381 |
+
frame.style.height = `${ch}px`;
|
| 382 |
+
frame.style.transformOrigin = "top left";
|
| 383 |
+
frame.style.transform = `scale(${scale})`;
|
| 384 |
+
if (isFullscreen) {
|
| 385 |
+
frame.style.position = "absolute";
|
| 386 |
+
frame.style.left = `${Math.max(0, (avail - cw * scale) / 2)}px`;
|
| 387 |
+
frame.style.top = `${Math.max(0, (availHeight - ch * scale) / 2)}px`;
|
| 388 |
+
wrap.style.height = "100%";
|
| 389 |
+
} else {
|
| 390 |
+
wrap.style.height = `${Math.ceil(ch * scale)}px`;
|
| 391 |
+
}
|
| 392 |
+
} else {
|
| 393 |
+
frame.style.width = "100%";
|
| 394 |
+
frame.style.height = `${ch}px`;
|
| 395 |
+
wrap.style.height = isFullscreen ? "100%" : `${ch}px`;
|
| 396 |
+
}
|
| 397 |
+
}
|
| 398 |
+
|
| 399 |
+
function attachFigureFit(frame, wrap) {
|
| 400 |
+
const refit = () => fitFigureFrame(frame, wrap);
|
| 401 |
+
frame.addEventListener("load", refit);
|
| 402 |
+
if (window.ResizeObserver) {
|
| 403 |
+
const ro = new ResizeObserver(() => refit());
|
| 404 |
+
ro.observe(wrap);
|
| 405 |
+
}
|
| 406 |
+
}
|
| 407 |
+
|
| 408 |
+
function renderFigureCell(text, container, head) {
|
| 409 |
+
const parts = parseFences(text);
|
| 410 |
+
const htmlPart = parts.find((part) => part.lang === "html");
|
| 411 |
+
const rawPart = parts.find((part) => part.lang === "raw");
|
| 412 |
+
if (!htmlPart || !htmlPart.text.trim()) {
|
| 413 |
+
const empty = document.createElement("p");
|
| 414 |
+
empty.className = "muted";
|
| 415 |
+
empty.textContent = "No figure HTML.";
|
| 416 |
+
container.appendChild(empty);
|
| 417 |
+
return;
|
| 418 |
+
}
|
| 419 |
+
const frame = document.createElement("iframe");
|
| 420 |
+
frame.className = "figure-frame";
|
| 421 |
+
frame.sandbox = "allow-scripts allow-same-origin";
|
| 422 |
+
frame.loading = "lazy";
|
| 423 |
+
frame.srcdoc = htmlPart.text;
|
| 424 |
+
registerFigureNavigation(frame);
|
| 425 |
+
const figWrap = document.createElement("div");
|
| 426 |
+
figWrap.className = "figure-fit";
|
| 427 |
+
figWrap.appendChild(frame);
|
| 428 |
+
attachFigureFit(frame, figWrap);
|
| 429 |
+
if (head) {
|
| 430 |
+
const metaEl = head.querySelector(".cell-meta");
|
| 431 |
+
if (metaEl)
|
| 432 |
+
metaEl.insertBefore(buildFullscreenControl(figWrap, frame), metaEl.firstChild);
|
| 433 |
+
}
|
| 434 |
+
if (!rawPart || !rawPart.text.trim()) {
|
| 435 |
+
container.appendChild(figWrap);
|
| 436 |
+
return;
|
| 437 |
+
}
|
| 438 |
+
const sw = document.createElement("div");
|
| 439 |
+
sw.className = "fig-switch";
|
| 440 |
+
const thumb = document.createElement("span");
|
| 441 |
+
thumb.className = "fig-switch-thumb";
|
| 442 |
+
const figBtn = document.createElement("button");
|
| 443 |
+
figBtn.type = "button";
|
| 444 |
+
figBtn.className = "active";
|
| 445 |
+
figBtn.textContent = "Figure";
|
| 446 |
+
const rawBtn = document.createElement("button");
|
| 447 |
+
rawBtn.type = "button";
|
| 448 |
+
rawBtn.textContent = "Raw";
|
| 449 |
+
sw.appendChild(thumb);
|
| 450 |
+
sw.appendChild(figBtn);
|
| 451 |
+
sw.appendChild(rawBtn);
|
| 452 |
+
const rawView = document.createElement("div");
|
| 453 |
+
rawView.className = "figure-raw";
|
| 454 |
+
rawView.hidden = true;
|
| 455 |
+
const pre = document.createElement("pre");
|
| 456 |
+
const code = document.createElement("code");
|
| 457 |
+
code.textContent = rawPart.text;
|
| 458 |
+
pre.appendChild(code);
|
| 459 |
+
rawView.appendChild(pre);
|
| 460 |
+
rawView.appendChild(copySnippetBtn(rawPart.text));
|
| 461 |
+
const select = (showRaw) => {
|
| 462 |
+
sw.classList.toggle("raw", showRaw);
|
| 463 |
+
figBtn.classList.toggle("active", !showRaw);
|
| 464 |
+
rawBtn.classList.toggle("active", showRaw);
|
| 465 |
+
figWrap.hidden = showRaw;
|
| 466 |
+
rawView.hidden = !showRaw;
|
| 467 |
+
};
|
| 468 |
+
figBtn.addEventListener("click", () => select(false));
|
| 469 |
+
rawBtn.addEventListener("click", () => select(true));
|
| 470 |
+
if (head) {
|
| 471 |
+
head.insertBefore(sw, head.querySelector(".cell-meta"));
|
| 472 |
+
} else {
|
| 473 |
+
container.appendChild(sw);
|
| 474 |
+
}
|
| 475 |
+
container.appendChild(figWrap);
|
| 476 |
+
container.appendChild(rawView);
|
| 477 |
+
}
|
| 478 |
+
|
| 479 |
+
// Poster embeds can send `{ type: "trackio-logbook:navigate", target: "..." }`
|
| 480 |
+
// from their iframe. Only accept messages from figure frames we created, and
|
| 481 |
+
// only route to pages that are present in this logbook's manifest.
|
| 482 |
+
function registerFigureNavigation(frame) {
|
| 483 |
+
const registerFrameWindow = () => {
|
| 484 |
+
if (frame.contentWindow) FIGURE_FRAME_WINDOWS.add(frame.contentWindow);
|
| 485 |
+
};
|
| 486 |
+
// `srcdoc` replaces the initial about:blank document. Register after that
|
| 487 |
+
// navigation as well, so messages come from the live figure document.
|
| 488 |
+
frame.addEventListener("load", registerFrameWindow);
|
| 489 |
+
registerFrameWindow();
|
| 490 |
+
if (FIGURE_NAVIGATION_READY) return;
|
| 491 |
+
FIGURE_NAVIGATION_READY = true;
|
| 492 |
+
window.addEventListener("message", (event) => {
|
| 493 |
+
if (!FIGURE_FRAME_WINDOWS.has(event.source)) return;
|
| 494 |
+
const message = event.data;
|
| 495 |
+
if (!message || message.type !== "trackio-logbook:navigate") return;
|
| 496 |
+
const target = String(message.target || "").replace(/^#?\//, "");
|
| 497 |
+
if (!target || !MANIFEST || !findNode(MANIFEST.root, target)) return;
|
| 498 |
+
const hash = "#/" + target;
|
| 499 |
+
if (location.hash === hash) scrollToHash();
|
| 500 |
+
else location.hash = hash;
|
| 501 |
+
});
|
| 502 |
+
}
|
| 503 |
+
|
| 504 |
+
const FULLSCREEN_ICON =
|
| 505 |
+
'<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" ' +
|
| 506 |
+
'stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">' +
|
| 507 |
+
'<path d="M8 3H3v5M16 3h5v5M21 16v5h-5M3 16v5h5"/>' +
|
| 508 |
+
'<path d="M3 8 8 3M16 3l5 5M21 16l-5 5M8 21l-5-5"/></svg>';
|
| 509 |
+
|
| 510 |
+
// Figures are rendered in same-origin iframes, so fullscreen the fitted
|
| 511 |
+
// wrapper rather than the iframe document. This uses the browser's native
|
| 512 |
+
// fullscreen UI and preserves the figure's existing responsive sizing.
|
| 513 |
+
function buildFullscreenControl(figWrap, frame) {
|
| 514 |
+
const wrap = document.createElement("span");
|
| 515 |
+
wrap.className = "cell-fullscreen";
|
| 516 |
+
const btn = document.createElement("button");
|
| 517 |
+
btn.type = "button";
|
| 518 |
+
btn.className = "cell-fullscreen-btn";
|
| 519 |
+
btn.setAttribute("aria-label", "Open figure in fullscreen");
|
| 520 |
+
btn.title = "Open figure in fullscreen";
|
| 521 |
+
btn.innerHTML = FULLSCREEN_ICON;
|
| 522 |
+
wrap.appendChild(btn);
|
| 523 |
+
|
| 524 |
+
btn.addEventListener("click", async () => {
|
| 525 |
+
const request = figWrap.requestFullscreen || figWrap.webkitRequestFullscreen;
|
| 526 |
+
if (!request) return;
|
| 527 |
+
try {
|
| 528 |
+
await request.call(figWrap);
|
| 529 |
+
} catch (_) {
|
| 530 |
+
// Fullscreen can be disabled by the embedding browser or policy.
|
| 531 |
+
}
|
| 532 |
+
});
|
| 533 |
+
document.addEventListener("fullscreenchange", () => {
|
| 534 |
+
if (document.fullscreenElement === figWrap) fitFigureFrame(frame, figWrap);
|
| 535 |
+
});
|
| 536 |
+
return wrap;
|
| 537 |
+
}
|
| 538 |
+
|
| 539 |
+
function extractUrls(text) {
|
| 540 |
+
const seen = new Set();
|
| 541 |
+
const urls = [];
|
| 542 |
+
let match;
|
| 543 |
+
while ((match = DETECTED_URL.exec(text))) {
|
| 544 |
+
const url = match[1].replace(/[.,;:!?'"`]+$/, "");
|
| 545 |
+
if (!seen.has(url)) {
|
| 546 |
+
seen.add(url);
|
| 547 |
+
urls.push(url);
|
| 548 |
+
}
|
| 549 |
+
}
|
| 550 |
+
DETECTED_URL.lastIndex = 0;
|
| 551 |
+
return urls;
|
| 552 |
+
}
|
| 553 |
+
|
| 554 |
+
const IMG_URL = /(\.(png|jpe?g|gif|svg|webp)(\?|$)|\/artifact_blob\/)/i;
|
| 555 |
+
|
| 556 |
+
function renderDetectedEmbeds(text, container) {
|
| 557 |
+
extractUrls(text).forEach((url) => {
|
| 558 |
+
if (url.startsWith("trackio-local-dashboard://")) {
|
| 559 |
+
const div = document.createElement("div");
|
| 560 |
+
div.className = "artifact-chip";
|
| 561 |
+
div.dataset.resUrl = url;
|
| 562 |
+
div.innerHTML =
|
| 563 |
+
"🎯 <strong>Local Trackio dashboard</strong> — publish the logbook to share it";
|
| 564 |
+
container.appendChild(div);
|
| 565 |
+
} else if (IMG_URL.test(url)) {
|
| 566 |
+
container.appendChild(renderImage(url));
|
| 567 |
+
} else if (/huggingface\.co\/spaces\//.test(url)) {
|
| 568 |
+
maybeEmbedTrackioSpace(url, container);
|
| 569 |
+
}
|
| 570 |
+
});
|
| 571 |
+
}
|
| 572 |
+
|
| 573 |
+
function renderStandaloneUrl(url) {
|
| 574 |
+
if (IMG_URL.test(url) || IMG_PATH.test(url)) return renderImage(url);
|
| 575 |
+
const item = classifyResource(url);
|
| 576 |
+
if (item) {
|
| 577 |
+
const marker = document.createElement("span");
|
| 578 |
+
marker.className = "resource-anchor";
|
| 579 |
+
marker.dataset.resUrl = item.url;
|
| 580 |
+
marker.setAttribute("aria-hidden", "true");
|
| 581 |
+
return marker;
|
| 582 |
+
}
|
| 583 |
+
const p = document.createElement("p");
|
| 584 |
+
p.innerHTML = inline(url);
|
| 585 |
+
return p;
|
| 586 |
+
}
|
| 587 |
+
|
| 588 |
+
function renderImage(url) {
|
| 589 |
+
const a = document.createElement("a");
|
| 590 |
+
a.className = "unfurl image";
|
| 591 |
+
a.href = url;
|
| 592 |
+
a.target = "_blank";
|
| 593 |
+
a.rel = "noopener";
|
| 594 |
+
const img = document.createElement("img");
|
| 595 |
+
img.loading = "lazy";
|
| 596 |
+
img.src = url;
|
| 597 |
+
img.alt = "artifact image";
|
| 598 |
+
a.appendChild(img);
|
| 599 |
+
return a;
|
| 600 |
+
}
|
| 601 |
+
|
| 602 |
+
function maybeEmbedTrackioSpace(url, container) {
|
| 603 |
+
const id = url.split("/spaces/")[1].split(/[?#]/)[0].replace(/\/$/, "");
|
| 604 |
+
const holder = document.createElement("div");
|
| 605 |
+
container.appendChild(holder);
|
| 606 |
+
getJSON(`https://huggingface.co/api/spaces/${id}`).then((d) => {
|
| 607 |
+
const tags = (d && d.tags) || [];
|
| 608 |
+
if (tags.some((t) => String(t).toLowerCase() === "trackio")) {
|
| 609 |
+
renderTrackioSpaceEmbed(holder, url, id);
|
| 610 |
+
} else {
|
| 611 |
+
holder.remove();
|
| 612 |
+
}
|
| 613 |
+
});
|
| 614 |
+
}
|
| 615 |
+
|
| 616 |
+
function jpGutter(label) {
|
| 617 |
+
const g = document.createElement("div");
|
| 618 |
+
g.className = "jp-gutter";
|
| 619 |
+
g.textContent = label;
|
| 620 |
+
return g;
|
| 621 |
+
}
|
| 622 |
+
|
| 623 |
+
function renderOutArtifact(info) {
|
| 624 |
+
const remote = !info.local && !!info.url;
|
| 625 |
+
const el = document.createElement(remote ? "a" : "div");
|
| 626 |
+
el.className = "out-artifact";
|
| 627 |
+
if (remote) {
|
| 628 |
+
el.href = info.url;
|
| 629 |
+
el.target = "_blank";
|
| 630 |
+
el.rel = "noopener";
|
| 631 |
+
}
|
| 632 |
+
el.dataset.resUrl = info.resUrl;
|
| 633 |
+
const parts = [info.type, info.size].filter(Boolean).map(esc);
|
| 634 |
+
const state = remote
|
| 635 |
+
? `<span class="out-artifact-state open">Open ↗</span>`
|
| 636 |
+
: `<span class="out-artifact-state">publish to share</span>`;
|
| 637 |
+
const meta = parts.length ? `${parts.join(" · ")} · ${state}` : state;
|
| 638 |
+
el.innerHTML =
|
| 639 |
+
`<span class="out-artifact-ico">${ARTIFACT_ICON_IMG}</span>` +
|
| 640 |
+
`<span class="out-artifact-name">${esc(info.name)}</span>` +
|
| 641 |
+
`<span class="out-artifact-meta">${meta}</span>`;
|
| 642 |
+
return el;
|
| 643 |
+
}
|
| 644 |
+
|
| 645 |
+
function renderCodeCell(body, container, artifacts) {
|
| 646 |
+
const parts = parseFences(body);
|
| 647 |
+
const block = document.createElement("div");
|
| 648 |
+
block.className = "jp";
|
| 649 |
+
const input = document.createElement("div");
|
| 650 |
+
input.className = "jp-in";
|
| 651 |
+
const inputBody = document.createElement("div");
|
| 652 |
+
inputBody.className = "jp-in-body";
|
| 653 |
+
input.appendChild(jpGutter("In"));
|
| 654 |
+
input.appendChild(inputBody);
|
| 655 |
+
let metaEl = null;
|
| 656 |
+
let outputEl = null;
|
| 657 |
+
let outBody = null;
|
| 658 |
+
const ensureOut = () => {
|
| 659 |
+
if (outputEl) return;
|
| 660 |
+
outputEl = document.createElement("div");
|
| 661 |
+
outputEl.className = "jp-out";
|
| 662 |
+
outputEl.appendChild(jpGutter("Out"));
|
| 663 |
+
outBody = document.createElement("div");
|
| 664 |
+
outBody.className = "jp-out-body";
|
| 665 |
+
outputEl.appendChild(outBody);
|
| 666 |
+
};
|
| 667 |
+
const embedTexts = [];
|
| 668 |
+
parts.forEach((part) => {
|
| 669 |
+
if (part.kind === "text") {
|
| 670 |
+
const text = part.text.trim();
|
| 671 |
+
if (!text) return;
|
| 672 |
+
if (/^exit\s+\S+(\s|·)/.test(text)) {
|
| 673 |
+
metaEl = document.createElement("div");
|
| 674 |
+
metaEl.className = "jp-meta";
|
| 675 |
+
metaEl.textContent = text.replace(
|
| 676 |
+
/\s*·\s*[A-Z][a-z]{2} \d{1,2}, \d{4}.*$/,
|
| 677 |
+
""
|
| 678 |
+
);
|
| 679 |
+
} else {
|
| 680 |
+
renderMarkdownPlain(text, container);
|
| 681 |
+
embedTexts.push(text);
|
| 682 |
+
}
|
| 683 |
+
return;
|
| 684 |
+
}
|
| 685 |
+
if (part.kind === "output") {
|
| 686 |
+
ensureOut();
|
| 687 |
+
const pre = document.createElement("pre");
|
| 688 |
+
pre.className = "jp-out-pre";
|
| 689 |
+
const c = document.createElement("code");
|
| 690 |
+
c.textContent = part.text;
|
| 691 |
+
pre.appendChild(c);
|
| 692 |
+
outBody.appendChild(pre);
|
| 693 |
+
outputEl.appendChild(copySnippetBtn(part.text));
|
| 694 |
+
embedTexts.push(part.text);
|
| 695 |
+
return;
|
| 696 |
+
}
|
| 697 |
+
inputBody.appendChild(renderCode(part.text, part.lang, part.title));
|
| 698 |
+
});
|
| 699 |
+
if (artifacts && artifacts.length) {
|
| 700 |
+
ensureOut();
|
| 701 |
+
const artWrap = document.createElement("div");
|
| 702 |
+
artWrap.className = "jp-artifacts";
|
| 703 |
+
artifacts.forEach((a) => {
|
| 704 |
+
artWrap.appendChild(
|
| 705 |
+
renderOutArtifact(artifactInfoFromCell(a.meta, a.body))
|
| 706 |
+
);
|
| 707 |
+
});
|
| 708 |
+
outBody.appendChild(artWrap);
|
| 709 |
+
}
|
| 710 |
+
if (inputBody.childNodes.length > 0) block.appendChild(input);
|
| 711 |
+
if (metaEl) block.appendChild(metaEl);
|
| 712 |
+
if (outputEl) block.appendChild(outputEl);
|
| 713 |
+
if (block.childNodes.length) container.appendChild(block);
|
| 714 |
+
embedTexts.forEach((text) => renderDetectedEmbeds(text, container));
|
| 715 |
+
}
|
| 716 |
+
|
| 717 |
+
function parseRow(line) {
|
| 718 |
+
let s = line.trim();
|
| 719 |
+
if (s.startsWith("|")) s = s.slice(1);
|
| 720 |
+
if (s.endsWith("|")) s = s.slice(0, -1);
|
| 721 |
+
return s.split(/(?<!\\)\|/).map((c) => c.replace(/\\\|/g, "|").trim());
|
| 722 |
+
}
|
| 723 |
+
|
| 724 |
+
const TRUTHY = ["x", "✓", "✔", "yes", "done", "true", "[x]"];
|
| 725 |
+
const CHIP_COLORS = [
|
| 726 |
+
["#e7f0ff", "#2158d0"],
|
| 727 |
+
["#fde8ec", "#c62a4b"],
|
| 728 |
+
["#e6f7ee", "#1a8a55"],
|
| 729 |
+
["#fdf0e0", "#b26a12"],
|
| 730 |
+
["#efe9ff", "#5b3bd6"],
|
| 731 |
+
["#e6f6f8", "#127b88"],
|
| 732 |
+
];
|
| 733 |
+
|
| 734 |
+
function chipColor(name) {
|
| 735 |
+
let h = 0;
|
| 736 |
+
for (let i = 0; i < name.length; i++) h = (h * 31 + name.charCodeAt(i)) >>> 0;
|
| 737 |
+
return CHIP_COLORS[h % CHIP_COLORS.length];
|
| 738 |
+
}
|
| 739 |
+
|
| 740 |
+
const STATUS_MAP = {
|
| 741 |
+
"": ["Planned", "gray"],
|
| 742 |
+
planned: ["Planned", "gray"],
|
| 743 |
+
todo: ["Planned", "gray"],
|
| 744 |
+
"to do": ["Planned", "gray"],
|
| 745 |
+
backlog: ["Planned", "gray"],
|
| 746 |
+
"in progress": ["In progress", "amber"],
|
| 747 |
+
"in-progress": ["In progress", "amber"],
|
| 748 |
+
wip: ["In progress", "amber"],
|
| 749 |
+
running: ["In progress", "amber"],
|
| 750 |
+
active: ["In progress", "amber"],
|
| 751 |
+
done: ["Done", "green"],
|
| 752 |
+
complete: ["Done", "green"],
|
| 753 |
+
completed: ["Done", "green"],
|
| 754 |
+
blocked: ["Blocked", "red"],
|
| 755 |
+
failed: ["Failed", "red"],
|
| 756 |
+
abandoned: ["Abandoned", "gray"],
|
| 757 |
+
};
|
| 758 |
+
|
| 759 |
+
function statusBadge(val) {
|
| 760 |
+
const [label, tone] = STATUS_MAP[val.toLowerCase()] || [val || "—", "gray"];
|
| 761 |
+
return `<span class="badge ${tone}">${esc(label)}</span>`;
|
| 762 |
+
}
|
| 763 |
+
|
| 764 |
+
function renderTable(rows, container) {
|
| 765 |
+
if (rows.length < 2) return;
|
| 766 |
+
const header = rows[0];
|
| 767 |
+
const body = rows.slice(2);
|
| 768 |
+
const roles = header.map((h) => {
|
| 769 |
+
const t = h.toLowerCase();
|
| 770 |
+
if (t.includes("status") || t.includes("state")) return "status";
|
| 771 |
+
if (t.includes("progress") || t.includes("complete") || t.includes("done"))
|
| 772 |
+
return "check";
|
| 773 |
+
if (t === "who" || t.includes("assign") || t.includes("owner")) return "who";
|
| 774 |
+
return "text";
|
| 775 |
+
});
|
| 776 |
+
const table = document.createElement("table");
|
| 777 |
+
table.className = "board";
|
| 778 |
+
const thead = document.createElement("thead");
|
| 779 |
+
const htr = document.createElement("tr");
|
| 780 |
+
header.forEach((h, c) => {
|
| 781 |
+
const th = document.createElement("th");
|
| 782 |
+
th.textContent = h;
|
| 783 |
+
if (roles[c] === "check") th.className = "col-check";
|
| 784 |
+
htr.appendChild(th);
|
| 785 |
+
});
|
| 786 |
+
thead.appendChild(htr);
|
| 787 |
+
table.appendChild(thead);
|
| 788 |
+
const tbody = document.createElement("tbody");
|
| 789 |
+
body.forEach((cells) => {
|
| 790 |
+
const nonEmpty = cells.filter((x) => x !== "").length;
|
| 791 |
+
if (header.length > 1 && nonEmpty === 1 && cells[0]) {
|
| 792 |
+
const tr = document.createElement("tr");
|
| 793 |
+
tr.className = "section-row";
|
| 794 |
+
const td = document.createElement("td");
|
| 795 |
+
td.colSpan = header.length;
|
| 796 |
+
td.innerHTML = inline(cells[0]);
|
| 797 |
+
tr.appendChild(td);
|
| 798 |
+
tbody.appendChild(tr);
|
| 799 |
+
return;
|
| 800 |
+
}
|
| 801 |
+
const tr = document.createElement("tr");
|
| 802 |
+
header.forEach((_, c) => {
|
| 803 |
+
const td = document.createElement("td");
|
| 804 |
+
const val = (cells[c] || "").trim();
|
| 805 |
+
if (roles[c] === "status") {
|
| 806 |
+
td.className = "col-status";
|
| 807 |
+
td.innerHTML = statusBadge(val);
|
| 808 |
+
} else if (roles[c] === "check") {
|
| 809 |
+
td.className = "col-check";
|
| 810 |
+
const on = TRUTHY.indexOf(val.toLowerCase()) !== -1;
|
| 811 |
+
td.innerHTML = `<span class="box ${on ? "on" : ""}">${on ? "✓" : ""}</span>`;
|
| 812 |
+
} else if (roles[c] === "who") {
|
| 813 |
+
if (!val || /^to assign$/i.test(val)) {
|
| 814 |
+
td.innerHTML = `<span class="who-chip muted">${esc(val || "—")}</span>`;
|
| 815 |
+
} else {
|
| 816 |
+
const [bg, fg] = chipColor(val);
|
| 817 |
+
td.innerHTML = `<span class="who-chip" style="background:${bg};color:${fg}">${esc(val)}</span>`;
|
| 818 |
+
}
|
| 819 |
+
} else {
|
| 820 |
+
td.innerHTML = inline(val);
|
| 821 |
+
}
|
| 822 |
+
tr.appendChild(td);
|
| 823 |
+
});
|
| 824 |
+
const link = tr.querySelector('a[href^="#/"]');
|
| 825 |
+
if (link) {
|
| 826 |
+
tr.classList.add("linked-row");
|
| 827 |
+
tr.addEventListener("click", (e) => {
|
| 828 |
+
if (e.target.tagName !== "A") location.hash = link.getAttribute("href");
|
| 829 |
+
});
|
| 830 |
+
}
|
| 831 |
+
tbody.appendChild(tr);
|
| 832 |
+
});
|
| 833 |
+
table.appendChild(tbody);
|
| 834 |
+
const wrap = document.createElement("div");
|
| 835 |
+
wrap.className = "board-wrap";
|
| 836 |
+
wrap.appendChild(table);
|
| 837 |
+
container.appendChild(wrap);
|
| 838 |
+
}
|
| 839 |
+
|
| 840 |
+
const HL_RULES = {
|
| 841 |
+
python: [
|
| 842 |
+
["comment", /#[^\n]*/],
|
| 843 |
+
["string", /'''[\s\S]*?'''|"""[\s\S]*?"""|'(?:\\.|[^'\\])*'|"(?:\\.|[^"\\])*"/],
|
| 844 |
+
[
|
| 845 |
+
"keyword",
|
| 846 |
+
/\b(?:def|class|return|if|elif|else|for|while|import|from|as|with|try|except|finally|raise|in|not|and|or|is|None|True|False|lambda|yield|global|nonlocal|assert|pass|break|continue|async|await|print)\b/,
|
| 847 |
+
],
|
| 848 |
+
["number", /\b\d[\d_.eE+-]*\b/],
|
| 849 |
+
],
|
| 850 |
+
bash: [
|
| 851 |
+
["comment", /#[^\n]*/],
|
| 852 |
+
["string", /'(?:\\.|[^'\\])*'|"(?:\\.|[^"\\])*"/],
|
| 853 |
+
["keyword", /\b(?:if|then|else|fi|for|in|do|done|while|case|esac|function|export|source|echo|cd|return|local)\b/],
|
| 854 |
+
["number", /(?<=\s)-{1,2}[a-zA-Z][\w-]*/],
|
| 855 |
+
],
|
| 856 |
+
json: [
|
| 857 |
+
["string", /"(?:\\.|[^"\\])*"/],
|
| 858 |
+
["keyword", /\b(?:true|false|null)\b/],
|
| 859 |
+
["number", /-?\b\d[\d.eE+-]*\b/],
|
| 860 |
+
],
|
| 861 |
+
yaml: [
|
| 862 |
+
["comment", /#[^\n]*/],
|
| 863 |
+
["string", /'(?:\\.|[^'\\])*'|"(?:\\.|[^"\\])*"/],
|
| 864 |
+
["keyword", /\b(?:true|false|null|yes|no)\b/],
|
| 865 |
+
["number", /-?\b\d[\d.eE+-]*\b/],
|
| 866 |
+
],
|
| 867 |
+
};
|
| 868 |
+
HL_RULES.javascript = HL_RULES.python;
|
| 869 |
+
HL_RULES.typescript = HL_RULES.python;
|
| 870 |
+
HL_RULES.sql = [
|
| 871 |
+
["comment", /--[^\n]*/],
|
| 872 |
+
["string", /'(?:\\.|[^'\\])*'/],
|
| 873 |
+
[
|
| 874 |
+
"keyword",
|
| 875 |
+
/\b(?:SELECT|FROM|WHERE|JOIN|LEFT|RIGHT|INNER|OUTER|ON|GROUP|BY|ORDER|LIMIT|INSERT|INTO|VALUES|UPDATE|SET|DELETE|CREATE|TABLE|AS|AND|OR|NOT|NULL|COUNT|DISTINCT|IN)\b/i,
|
| 876 |
+
],
|
| 877 |
+
["number", /\b\d[\d.]*\b/],
|
| 878 |
+
];
|
| 879 |
+
|
| 880 |
+
function highlightCode(code, lang) {
|
| 881 |
+
const rules = HL_RULES[lang];
|
| 882 |
+
if (!rules) return esc(code);
|
| 883 |
+
const combined = new RegExp(rules.map((r) => "(" + r[1].source + ")").join("|"), "g");
|
| 884 |
+
let out = "";
|
| 885 |
+
let last = 0;
|
| 886 |
+
let m;
|
| 887 |
+
while ((m = combined.exec(code))) {
|
| 888 |
+
if (m[0] === "") {
|
| 889 |
+
combined.lastIndex++;
|
| 890 |
+
continue;
|
| 891 |
+
}
|
| 892 |
+
out += esc(code.slice(last, m.index));
|
| 893 |
+
let gi = 1;
|
| 894 |
+
while (gi < m.length && m[gi] === undefined) gi++;
|
| 895 |
+
out += `<span class="tok-${rules[gi - 1][0]}">${esc(m[0])}</span>`;
|
| 896 |
+
last = m.index + m[0].length;
|
| 897 |
+
}
|
| 898 |
+
out += esc(code.slice(last));
|
| 899 |
+
return out;
|
| 900 |
+
}
|
| 901 |
+
|
| 902 |
+
function copySnippetBtn(text) {
|
| 903 |
+
const btn = document.createElement("button");
|
| 904 |
+
btn.type = "button";
|
| 905 |
+
btn.className = "copy-snippet";
|
| 906 |
+
btn.title = "Copy";
|
| 907 |
+
btn.textContent = "⧉";
|
| 908 |
+
btn.addEventListener("click", (e) => {
|
| 909 |
+
e.preventDefault();
|
| 910 |
+
e.stopPropagation();
|
| 911 |
+
copyText(text, btn, "⧉");
|
| 912 |
+
});
|
| 913 |
+
return btn;
|
| 914 |
+
}
|
| 915 |
+
|
| 916 |
+
function renderCode(code, lang, title) {
|
| 917 |
+
const pre = document.createElement("pre");
|
| 918 |
+
pre.className = "hl";
|
| 919 |
+
const c = document.createElement("code");
|
| 920 |
+
c.innerHTML = highlightCode(code, lang);
|
| 921 |
+
pre.appendChild(c);
|
| 922 |
+
if (!title) {
|
| 923 |
+
const wrap = document.createElement("div");
|
| 924 |
+
wrap.className = "snippet";
|
| 925 |
+
wrap.appendChild(pre);
|
| 926 |
+
wrap.appendChild(copySnippetBtn(code));
|
| 927 |
+
return wrap;
|
| 928 |
+
}
|
| 929 |
+
const det = document.createElement("details");
|
| 930 |
+
det.className = "code-accordion";
|
| 931 |
+
det.dataset.resUrl = `trackio-script://${title}`;
|
| 932 |
+
const sum = document.createElement("summary");
|
| 933 |
+
sum.innerHTML =
|
| 934 |
+
`<span class="code-ico"></></span>` +
|
| 935 |
+
`<span class="code-name">${esc(title)}</span>`;
|
| 936 |
+
sum
|
| 937 |
+
.querySelector(".code-name")
|
| 938 |
+
.addEventListener("click", (e) => e.preventDefault());
|
| 939 |
+
det.appendChild(sum);
|
| 940 |
+
const wrap = document.createElement("div");
|
| 941 |
+
wrap.className = "snippet";
|
| 942 |
+
wrap.appendChild(pre);
|
| 943 |
+
wrap.appendChild(copySnippetBtn(code));
|
| 944 |
+
det.appendChild(wrap);
|
| 945 |
+
return det;
|
| 946 |
+
}
|
| 947 |
+
|
| 948 |
+
const IMG_PATH = /^[^\s]+\.(png|jpe?g|gif|svg|webp)$/i;
|
| 949 |
+
|
| 950 |
+
function renderList(items, container) {
|
| 951 |
+
let ul = null;
|
| 952 |
+
items.forEach((item) => {
|
| 953 |
+
if (URL_ONLY.test(item) || IMG_PATH.test(item)) {
|
| 954 |
+
const el = renderStandaloneUrl(item);
|
| 955 |
+
if (el) {
|
| 956 |
+
ul = null;
|
| 957 |
+
container.appendChild(el);
|
| 958 |
+
}
|
| 959 |
+
} else if (item.indexOf("📦 Artifact") !== -1) {
|
| 960 |
+
ul = null;
|
| 961 |
+
const div = document.createElement("div");
|
| 962 |
+
div.className = "artifact-chip";
|
| 963 |
+
div.innerHTML = inline(item.replace("📦", "🪣"));
|
| 964 |
+
container.appendChild(div);
|
| 965 |
+
} else if (item.indexOf("trackio-local-dashboard://") !== -1) {
|
| 966 |
+
ul = null;
|
| 967 |
+
const uri = item.match(/trackio-local-dashboard:\/\/\S+/)?.[0] || "";
|
| 968 |
+
const div = document.createElement("div");
|
| 969 |
+
div.className = "artifact-chip";
|
| 970 |
+
if (uri) div.dataset.resUrl = uri;
|
| 971 |
+
div.innerHTML =
|
| 972 |
+
"🎯 <strong>Local dashboard</strong> — publish the logbook to share it";
|
| 973 |
+
container.appendChild(div);
|
| 974 |
+
} else {
|
| 975 |
+
if (!ul) {
|
| 976 |
+
ul = document.createElement("ul");
|
| 977 |
+
container.appendChild(ul);
|
| 978 |
+
}
|
| 979 |
+
const li = document.createElement("li");
|
| 980 |
+
li.innerHTML = inline(item);
|
| 981 |
+
ul.appendChild(li);
|
| 982 |
+
}
|
| 983 |
+
});
|
| 984 |
+
}
|
| 985 |
+
|
| 986 |
+
/* -------------------- resources rail -------------------- */
|
| 987 |
+
|
| 988 |
+
function fmt(n) {
|
| 989 |
+
if (n == null) return null;
|
| 990 |
+
if (n >= 1e6) return (n / 1e6).toFixed(1) + "M";
|
| 991 |
+
if (n >= 1e3) return (n / 1e3).toFixed(1) + "k";
|
| 992 |
+
return String(n);
|
| 993 |
+
}
|
| 994 |
+
|
| 995 |
+
const RESOURCE_SECTIONS = [
|
| 996 |
+
["dashboard", "Dashboards", "🎯"],
|
| 997 |
+
["model", "Models", "🤗"],
|
| 998 |
+
["dataset", "Datasets", "📊"],
|
| 999 |
+
["space", "Spaces", "🚀"],
|
| 1000 |
+
["artifact", "Artifacts", "🪣"],
|
| 1001 |
+
["paper", "Papers", "📄"],
|
| 1002 |
+
["repo", "Code", "🐙"],
|
| 1003 |
+
["job", "Jobs", "⚙️"],
|
| 1004 |
+
["bucket", "Buckets", "🪣"],
|
| 1005 |
+
];
|
| 1006 |
+
|
| 1007 |
+
const RESOURCE_ICONS = Object.fromEntries(
|
| 1008 |
+
RESOURCE_SECTIONS.map(([kind, , icon]) => [kind, icon])
|
| 1009 |
+
);
|
| 1010 |
+
|
| 1011 |
+
const ARTIFACT_ICON_IMG = `<img class="art-ico" src="./bucket-icon.svg" alt="" />`;
|
| 1012 |
+
const DASHBOARD_ICON_IMG = `<img class="art-ico" src="./trackio-logo-light.png" alt="" />`;
|
| 1013 |
+
|
| 1014 |
+
const RESOURCE_DESC = {
|
| 1015 |
+
dashboard: "Dashboard",
|
| 1016 |
+
model: "Model",
|
| 1017 |
+
dataset: "Dataset",
|
| 1018 |
+
space: "Space",
|
| 1019 |
+
artifact: "Artifact — in Bucket",
|
| 1020 |
+
paper: "Paper",
|
| 1021 |
+
repo: "Repository",
|
| 1022 |
+
job: "Job — status & logs",
|
| 1023 |
+
bucket: "Bucket — artifacts & data",
|
| 1024 |
+
};
|
| 1025 |
+
|
| 1026 |
+
const HF_NON_MODEL_PREFIX =
|
| 1027 |
+
/^(datasets|spaces|jobs|buckets|papers|blog|docs|api|posts|collections|organizations|settings|new|join|login|pricing|tasks|learn|chat|models)(\/|$)/;
|
| 1028 |
+
|
| 1029 |
+
function hfId(url, marker) {
|
| 1030 |
+
return url.split(marker)[1].split(/[?#]/)[0].replace(/\/$/, "");
|
| 1031 |
+
}
|
| 1032 |
+
|
| 1033 |
+
function classifyResource(url) {
|
| 1034 |
+
if (IMG_URL.test(url)) {
|
| 1035 |
+
return null;
|
| 1036 |
+
}
|
| 1037 |
+
let m;
|
| 1038 |
+
if (url.startsWith("trackio-local-dashboard://")) {
|
| 1039 |
+
return {
|
| 1040 |
+
kind: "dashboard",
|
| 1041 |
+
id: url.slice("trackio-local-dashboard://".length),
|
| 1042 |
+
url,
|
| 1043 |
+
local: true,
|
| 1044 |
+
};
|
| 1045 |
+
}
|
| 1046 |
+
if (url.startsWith("trackio-artifact://")) {
|
| 1047 |
+
return {
|
| 1048 |
+
kind: "artifact",
|
| 1049 |
+
id: url.slice("trackio-artifact://".length),
|
| 1050 |
+
url,
|
| 1051 |
+
local: true,
|
| 1052 |
+
};
|
| 1053 |
+
}
|
| 1054 |
+
if (url.startsWith("trackio-local-path://")) {
|
| 1055 |
+
return {
|
| 1056 |
+
kind: "artifact",
|
| 1057 |
+
id: url.slice("trackio-local-path://".length),
|
| 1058 |
+
url,
|
| 1059 |
+
local: true,
|
| 1060 |
+
};
|
| 1061 |
+
}
|
| 1062 |
+
if ((m = url.match(/huggingface\.co\/buckets\/[^#\s]+#(.+)/))) {
|
| 1063 |
+
return { kind: "artifact", id: decodeURIComponent(m[1]), url };
|
| 1064 |
+
}
|
| 1065 |
+
if (/huggingface\.co\/datasets\/[^/]+\/[^/]+/.test(url)) {
|
| 1066 |
+
return { kind: "dataset", id: hfId(url, "/datasets/"), url };
|
| 1067 |
+
}
|
| 1068 |
+
if (/huggingface\.co\/spaces\/[^/]+\/[^/]+/.test(url)) {
|
| 1069 |
+
return { kind: "space", id: hfId(url, "/spaces/"), url };
|
| 1070 |
+
}
|
| 1071 |
+
if (/huggingface\.co\/jobs\//.test(url)) {
|
| 1072 |
+
const parts = hfId(url, "/jobs/").split("/");
|
| 1073 |
+
const jid = parts[1] || "";
|
| 1074 |
+
return {
|
| 1075 |
+
kind: "job",
|
| 1076 |
+
id: parts[0] + (jid ? ` · ${jid.slice(0, 12)}${jid.length > 12 ? "…" : ""}` : ""),
|
| 1077 |
+
url,
|
| 1078 |
+
};
|
| 1079 |
+
}
|
| 1080 |
+
if (/huggingface\.co\/buckets\//.test(url)) {
|
| 1081 |
+
return { kind: "bucket", id: hfId(url, "/buckets/"), url };
|
| 1082 |
+
}
|
| 1083 |
+
if (/huggingface\.co\/papers\//.test(url)) {
|
| 1084 |
+
return { kind: "paper", id: `Paper ${hfId(url, "/papers/")}`, url };
|
| 1085 |
+
}
|
| 1086 |
+
if ((m = url.match(/arxiv\.org\/(?:abs|pdf)\/([^?#\s]+)/))) {
|
| 1087 |
+
return { kind: "paper", id: `arXiv:${m[1].replace(/\.pdf$/, "")}`, url };
|
| 1088 |
+
}
|
| 1089 |
+
if ((m = url.match(/github\.com\/([^/?#]+\/[^/?#]+)/))) {
|
| 1090 |
+
return { kind: "repo", id: m[1], url };
|
| 1091 |
+
}
|
| 1092 |
+
if ((m = url.match(/huggingface\.co\/([^?#]+)/))) {
|
| 1093 |
+
const rest = m[1].replace(/\/$/, "");
|
| 1094 |
+
if (/^[^/]+\/[^/]+$/.test(rest) && !HF_NON_MODEL_PREFIX.test(rest)) {
|
| 1095 |
+
return { kind: "model", id: rest, url };
|
| 1096 |
+
}
|
| 1097 |
+
}
|
| 1098 |
+
return null;
|
| 1099 |
+
}
|
| 1100 |
+
|
| 1101 |
+
async function fillRailMeta(item, el) {
|
| 1102 |
+
if (item.local) return;
|
| 1103 |
+
const meta = el.querySelector(".rail-meta");
|
| 1104 |
+
const set = (parts) => {
|
| 1105 |
+
const text = parts.filter(Boolean).join(" · ");
|
| 1106 |
+
if (text) meta.textContent = text;
|
| 1107 |
+
};
|
| 1108 |
+
if (item.kind === "model") {
|
| 1109 |
+
const d = await getJSON(`https://huggingface.co/api/models/${item.id}`);
|
| 1110 |
+
if (d) set([d.pipeline_tag, `↓ ${fmt(d.downloads)}`, `♥ ${fmt(d.likes)}`]);
|
| 1111 |
+
} else if (item.kind === "dataset") {
|
| 1112 |
+
const d = await getJSON(`https://huggingface.co/api/datasets/${item.id}`);
|
| 1113 |
+
if (d) set([`↓ ${fmt(d.downloads)}`, `♥ ${fmt(d.likes)}`]);
|
| 1114 |
+
} else if (item.kind === "space" || item.kind === "dashboard") {
|
| 1115 |
+
const d = await getJSON(`https://huggingface.co/api/spaces/${item.id}`);
|
| 1116 |
+
if (d) set([d.sdk, `♥ ${fmt(d.likes)}`]);
|
| 1117 |
+
} else if (item.kind === "repo") {
|
| 1118 |
+
const d = await getJSON(`https://api.github.com/repos/${item.id}`);
|
| 1119 |
+
if (d) set([`★ ${fmt(d.stargazers_count)}`, d.language]);
|
| 1120 |
+
} else if (item.kind === "paper") {
|
| 1121 |
+
const m = item.id.match(/^(?:arXiv:|Paper )(.+)$/);
|
| 1122 |
+
if (!m) return;
|
| 1123 |
+
const arxivId = m[1].replace(/v\d+$/, "");
|
| 1124 |
+
const d = await getJSON(`https://huggingface.co/api/papers/${arxivId}`);
|
| 1125 |
+
if (d && d.id) {
|
| 1126 |
+
if (el.href) el.href = `https://huggingface.co/papers/${d.id}`;
|
| 1127 |
+
const title =
|
| 1128 |
+
d.title && d.title.length > 70 ? `${d.title.slice(0, 69)}…` : d.title;
|
| 1129 |
+
set([title, d.upvotes ? `▲ ${fmt(d.upvotes)}` : null]);
|
| 1130 |
+
}
|
| 1131 |
+
}
|
| 1132 |
+
}
|
| 1133 |
+
|
| 1134 |
+
const BARE_ID_SKIP_DIRS = new Set([
|
| 1135 |
+
"scripts",
|
| 1136 |
+
"configs",
|
| 1137 |
+
"config",
|
| 1138 |
+
"results",
|
| 1139 |
+
"figures",
|
| 1140 |
+
"data",
|
| 1141 |
+
"datasets",
|
| 1142 |
+
"src",
|
| 1143 |
+
"tests",
|
| 1144 |
+
"test",
|
| 1145 |
+
"examples",
|
| 1146 |
+
"pages",
|
| 1147 |
+
"assets",
|
| 1148 |
+
"docs",
|
| 1149 |
+
"outputs",
|
| 1150 |
+
"output",
|
| 1151 |
+
"checkpoints",
|
| 1152 |
+
"models",
|
| 1153 |
+
"utils",
|
| 1154 |
+
"lib",
|
| 1155 |
+
"bin",
|
| 1156 |
+
"tmp",
|
| 1157 |
+
"node_modules",
|
| 1158 |
+
"dist",
|
| 1159 |
+
"build",
|
| 1160 |
+
]);
|
| 1161 |
+
const FILE_EXT_RE =
|
| 1162 |
+
/\.(py|pyc|js|ts|jsx|tsx|json|jsonl|yaml|yml|csv|tsv|md|txt|sh|bash|html|css|png|jpe?g|svg|gif|webp|ipynb|toml|cfg|ini|lock|pdf|whl|gz|zip|tar|pt|pth|bin|safetensors|db|sqlite)$/i;
|
| 1163 |
+
|
| 1164 |
+
async function detectBareModelIds(text, groups) {
|
| 1165 |
+
const stripped = text.replace(DETECTED_URL, " ");
|
| 1166 |
+
DETECTED_URL.lastIndex = 0;
|
| 1167 |
+
const seen = new Set();
|
| 1168 |
+
const candidates = [];
|
| 1169 |
+
const re = /(^|[\s"'`(=[])([A-Za-z0-9][\w.-]*\/[A-Za-z0-9][\w.-]*)/g;
|
| 1170 |
+
let m;
|
| 1171 |
+
while ((m = re.exec(stripped)) && candidates.length < 15) {
|
| 1172 |
+
const id = m[2].replace(/[.:,]+$/, "");
|
| 1173 |
+
if (seen.has(id)) continue;
|
| 1174 |
+
seen.add(id);
|
| 1175 |
+
if (FILE_EXT_RE.test(id)) continue;
|
| 1176 |
+
if (BARE_ID_SKIP_DIRS.has(id.split("/")[0].toLowerCase())) continue;
|
| 1177 |
+
candidates.push(id);
|
| 1178 |
+
}
|
| 1179 |
+
const results = await Promise.all(
|
| 1180 |
+
candidates.map((id) => getJSON(`https://huggingface.co/api/models/${id}`))
|
| 1181 |
+
);
|
| 1182 |
+
let added = false;
|
| 1183 |
+
const confirmed = [];
|
| 1184 |
+
results.forEach((d, i) => {
|
| 1185 |
+
if (!d || !d.id) return;
|
| 1186 |
+
const id = candidates[i];
|
| 1187 |
+
confirmed.push(id);
|
| 1188 |
+
const url = `https://huggingface.co/${id}`;
|
| 1189 |
+
if (!groups.has("model")) groups.set("model", new Map());
|
| 1190 |
+
if (!groups.get("model").has(url)) {
|
| 1191 |
+
groups.get("model").set(url, { kind: "model", id, url });
|
| 1192 |
+
added = true;
|
| 1193 |
+
}
|
| 1194 |
+
});
|
| 1195 |
+
return { added, confirmed };
|
| 1196 |
+
}
|
| 1197 |
+
|
| 1198 |
+
function chipifyBareIds(ids, container) {
|
| 1199 |
+
if (!ids.length) return;
|
| 1200 |
+
const escaped = ids.map((id) => id.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"));
|
| 1201 |
+
const pattern = new RegExp("(" + escaped.join("|") + ")");
|
| 1202 |
+
const splitter = new RegExp(pattern.source, "g");
|
| 1203 |
+
container
|
| 1204 |
+
.querySelectorAll(".cell.markdown .cell-body")
|
| 1205 |
+
.forEach((body) => {
|
| 1206 |
+
const walker = document.createTreeWalker(body, NodeFilter.SHOW_TEXT, {
|
| 1207 |
+
acceptNode(node) {
|
| 1208 |
+
if (!pattern.test(node.nodeValue)) return NodeFilter.FILTER_REJECT;
|
| 1209 |
+
for (
|
| 1210 |
+
let el = node.parentElement;
|
| 1211 |
+
el && el !== body;
|
| 1212 |
+
el = el.parentElement
|
| 1213 |
+
) {
|
| 1214 |
+
if (["A", "CODE", "PRE", "BUTTON"].indexOf(el.tagName) !== -1) {
|
| 1215 |
+
return NodeFilter.FILTER_REJECT;
|
| 1216 |
+
}
|
| 1217 |
+
}
|
| 1218 |
+
return NodeFilter.FILTER_ACCEPT;
|
| 1219 |
+
},
|
| 1220 |
+
});
|
| 1221 |
+
const nodes = [];
|
| 1222 |
+
while (walker.nextNode()) nodes.push(walker.currentNode);
|
| 1223 |
+
nodes.forEach((node) => {
|
| 1224 |
+
const frag = document.createDocumentFragment();
|
| 1225 |
+
node.nodeValue.split(splitter).forEach((part) => {
|
| 1226 |
+
if (ids.indexOf(part) !== -1) {
|
| 1227 |
+
const holder = document.createElement("span");
|
| 1228 |
+
holder.innerHTML = resChipHtml({
|
| 1229 |
+
kind: "model",
|
| 1230 |
+
id: part,
|
| 1231 |
+
url: `https://huggingface.co/${part}`,
|
| 1232 |
+
});
|
| 1233 |
+
frag.appendChild(holder.firstChild);
|
| 1234 |
+
} else if (part) {
|
| 1235 |
+
frag.appendChild(document.createTextNode(part));
|
| 1236 |
+
}
|
| 1237 |
+
});
|
| 1238 |
+
node.parentNode.replaceChild(frag, node);
|
| 1239 |
+
});
|
| 1240 |
+
});
|
| 1241 |
+
}
|
| 1242 |
+
|
| 1243 |
+
let RAIL_TOKEN = 0;
|
| 1244 |
+
const RAIL_EXCLUDE_KINDS = new Set(["paper", "repo", "artifact", "dashboard"]);
|
| 1245 |
+
|
| 1246 |
+
function railDashboardItem(it) {
|
| 1247 |
+
return {
|
| 1248 |
+
kind: "dashboard",
|
| 1249 |
+
id: it.id,
|
| 1250 |
+
url: it.local ? it.resUrl : it.url || it.resUrl,
|
| 1251 |
+
local: it.local,
|
| 1252 |
+
railLabel: "Dashboard",
|
| 1253 |
+
};
|
| 1254 |
+
}
|
| 1255 |
+
|
| 1256 |
+
function promoteTrackioSpacesInRail(groups, dashResUrls, body, rail, token) {
|
| 1257 |
+
const spaceGroup = groups.get("space");
|
| 1258 |
+
if (!spaceGroup || !spaceGroup.size) return;
|
| 1259 |
+
spaceGroup.forEach((item, url) => {
|
| 1260 |
+
getJSON(`https://huggingface.co/api/spaces/${item.id}`)
|
| 1261 |
+
.then((d) => {
|
| 1262 |
+
if (rail.dataset.renderToken !== token) return;
|
| 1263 |
+
const tags = (d && d.tags) || [];
|
| 1264 |
+
if (!tags.some((t) => String(t).toLowerCase() === "trackio")) return;
|
| 1265 |
+
if (dashResUrls.has(url)) return;
|
| 1266 |
+
spaceGroup.delete(url);
|
| 1267 |
+
if (!spaceGroup.size) groups.delete("space");
|
| 1268 |
+
if (!groups.has("dashboard")) groups.set("dashboard", new Map());
|
| 1269 |
+
groups.get("dashboard").set(url, {
|
| 1270 |
+
kind: "dashboard",
|
| 1271 |
+
id: item.id,
|
| 1272 |
+
url: item.url,
|
| 1273 |
+
local: false,
|
| 1274 |
+
railLabel: "Dashboard",
|
| 1275 |
+
});
|
| 1276 |
+
dashResUrls.add(url);
|
| 1277 |
+
paintRail(groups, body, rail);
|
| 1278 |
+
})
|
| 1279 |
+
.catch(() => {});
|
| 1280 |
+
});
|
| 1281 |
+
}
|
| 1282 |
+
|
| 1283 |
+
function renderRail(md, body, rail) {
|
| 1284 |
+
const token = String(++RAIL_TOKEN);
|
| 1285 |
+
rail.dataset.renderToken = token;
|
| 1286 |
+
const scanText = md.replace(
|
| 1287 |
+
/(`{3,4}|~{3,4})(html|raw)[^\n]*\n[\s\S]*?\n\1/g,
|
| 1288 |
+
" "
|
| 1289 |
+
);
|
| 1290 |
+
const groups = new Map();
|
| 1291 |
+
const dashMap = new Map();
|
| 1292 |
+
const dashResUrls = new Set();
|
| 1293 |
+
cellDashboardItems(md).forEach((it) => {
|
| 1294 |
+
if (dashMap.has(it.resUrl)) return;
|
| 1295 |
+
dashMap.set(it.resUrl, railDashboardItem(it));
|
| 1296 |
+
dashResUrls.add(it.resUrl);
|
| 1297 |
+
});
|
| 1298 |
+
if (dashMap.size) groups.set("dashboard", dashMap);
|
| 1299 |
+
extractUrls(scanText).forEach((url) => {
|
| 1300 |
+
const item = classifyResource(url);
|
| 1301 |
+
if (!item) return;
|
| 1302 |
+
if (RAIL_EXCLUDE_KINDS.has(item.kind)) return;
|
| 1303 |
+
if (dashResUrls.has(url)) return;
|
| 1304 |
+
if (!groups.has(item.kind)) groups.set(item.kind, new Map());
|
| 1305 |
+
groups.get(item.kind).set(item.url, item);
|
| 1306 |
+
});
|
| 1307 |
+
const artMap = new Map();
|
| 1308 |
+
cellArtifactItems(md).forEach((it) => {
|
| 1309 |
+
if (artMap.has(it.resUrl)) return;
|
| 1310 |
+
const label = it.type
|
| 1311 |
+
? it.type.charAt(0).toUpperCase() + it.type.slice(1)
|
| 1312 |
+
: "Artifact";
|
| 1313 |
+
artMap.set(it.resUrl, {
|
| 1314 |
+
kind: "artifact",
|
| 1315 |
+
id: it.name,
|
| 1316 |
+
url: it.local ? it.resUrl : it.url || it.resUrl,
|
| 1317 |
+
local: it.local,
|
| 1318 |
+
railLabel: label,
|
| 1319 |
+
size: it.size,
|
| 1320 |
+
});
|
| 1321 |
+
});
|
| 1322 |
+
if (artMap.size) groups.set("artifact", artMap);
|
| 1323 |
+
paintRail(groups, body, rail);
|
| 1324 |
+
promoteTrackioSpacesInRail(groups, dashResUrls, body, rail, token);
|
| 1325 |
+
detectBareModelIds(scanText, groups)
|
| 1326 |
+
.then((result) => {
|
| 1327 |
+
if (rail.dataset.renderToken !== token) return;
|
| 1328 |
+
chipifyBareIds(result.confirmed, body);
|
| 1329 |
+
if (result.added) paintRail(groups, body, rail);
|
| 1330 |
+
})
|
| 1331 |
+
.catch(() => {});
|
| 1332 |
+
}
|
| 1333 |
+
|
| 1334 |
+
function paintRail(groups, body, rail) {
|
| 1335 |
+
rail.innerHTML = "";
|
| 1336 |
+
RESOURCE_SECTIONS.forEach(([kind, label, icon]) => {
|
| 1337 |
+
const group = groups.get(kind);
|
| 1338 |
+
if (!group || !group.size) return;
|
| 1339 |
+
group.forEach((item) => {
|
| 1340 |
+
const el = document.createElement(item.local ? "div" : "a");
|
| 1341 |
+
el.className = item.local ? "rail-item rail-local" : "rail-item";
|
| 1342 |
+
if (!item.local) {
|
| 1343 |
+
el.href = item.url;
|
| 1344 |
+
el.target = "_blank";
|
| 1345 |
+
el.rel = "noopener";
|
| 1346 |
+
}
|
| 1347 |
+
el.dataset.resUrl = item.url;
|
| 1348 |
+
let desc;
|
| 1349 |
+
if (kind === "artifact") {
|
| 1350 |
+
const state = item.local ? "publish to share" : "Open ↗";
|
| 1351 |
+
desc = item.size ? `${item.size} · ${state}` : state;
|
| 1352 |
+
} else if (kind === "dashboard") {
|
| 1353 |
+
desc = item.local ? "publish to share" : "Open ↗";
|
| 1354 |
+
} else {
|
| 1355 |
+
desc = item.local ? "publish to share" : RESOURCE_DESC[kind];
|
| 1356 |
+
}
|
| 1357 |
+
const kindLabel = item.railLabel || label.replace(/s$/, "");
|
| 1358 |
+
const iconHtml =
|
| 1359 |
+
kind === "artifact"
|
| 1360 |
+
? ARTIFACT_ICON_IMG
|
| 1361 |
+
: kind === "dashboard"
|
| 1362 |
+
? DASHBOARD_ICON_IMG
|
| 1363 |
+
: `<span>${icon}</span>`;
|
| 1364 |
+
el.innerHTML =
|
| 1365 |
+
`<div class="rail-kind">${iconHtml}${esc(kindLabel)}</div>` +
|
| 1366 |
+
`<div class="rail-title">${esc(item.id)}</div>` +
|
| 1367 |
+
`<div class="rail-meta">${esc(desc)}</div>`;
|
| 1368 |
+
rail.appendChild(el);
|
| 1369 |
+
fillRailMeta(item, el)
|
| 1370 |
+
.catch(() => {})
|
| 1371 |
+
.finally(() => scheduleRailPosition(body, rail));
|
| 1372 |
+
});
|
| 1373 |
+
});
|
| 1374 |
+
rail.hidden = !rail.childElementCount;
|
| 1375 |
+
scheduleRailPosition(body, rail);
|
| 1376 |
+
}
|
| 1377 |
+
|
| 1378 |
+
function resourceAnchor(body, url) {
|
| 1379 |
+
return body.querySelector(`[data-res-url="${CSS.escape(url)}"]`);
|
| 1380 |
+
}
|
| 1381 |
+
|
| 1382 |
+
function positionRail(body, rail) {
|
| 1383 |
+
if (rail.hidden || !rail.isConnected) return;
|
| 1384 |
+
const bodyRect = body.getBoundingClientRect();
|
| 1385 |
+
const items = Array.from(rail.querySelectorAll(".rail-item")).map((el, index) => {
|
| 1386 |
+
const anchor = resourceAnchor(body, el.dataset.resUrl);
|
| 1387 |
+
return {
|
| 1388 |
+
el,
|
| 1389 |
+
index,
|
| 1390 |
+
desired: anchor
|
| 1391 |
+
? Math.max(0, anchor.getBoundingClientRect().top - bodyRect.top)
|
| 1392 |
+
: 0,
|
| 1393 |
+
};
|
| 1394 |
+
});
|
| 1395 |
+
items.sort((a, b) => a.desired - b.desired || a.index - b.index);
|
| 1396 |
+
let cursor = 0;
|
| 1397 |
+
items.forEach(({ el, desired }) => {
|
| 1398 |
+
const top = Math.max(desired, cursor);
|
| 1399 |
+
el.style.top = `${top}px`;
|
| 1400 |
+
cursor = top + el.offsetHeight + 10;
|
| 1401 |
+
});
|
| 1402 |
+
rail.style.minHeight = `${Math.max(body.offsetHeight, cursor)}px`;
|
| 1403 |
+
}
|
| 1404 |
+
|
| 1405 |
+
function scheduleRailPosition(body, rail) {
|
| 1406 |
+
cancelAnimationFrame(Number(rail.dataset.positionFrame || 0));
|
| 1407 |
+
rail.dataset.positionFrame = String(
|
| 1408 |
+
requestAnimationFrame(() => positionRail(body, rail))
|
| 1409 |
+
);
|
| 1410 |
+
}
|
| 1411 |
+
|
| 1412 |
+
function dashboardSubdomainFromUrl(url) {
|
| 1413 |
+
return spaceIdFromUrl(url).toLowerCase().replace(/[^a-z0-9-]/g, "-");
|
| 1414 |
+
}
|
| 1415 |
+
|
| 1416 |
+
function dashboardOpenLink(head, url) {
|
| 1417 |
+
if (!head || !url) return;
|
| 1418 |
+
const meta = head.querySelector(".cell-meta");
|
| 1419 |
+
if (!meta) return;
|
| 1420 |
+
let link = meta.querySelector(".cell-open");
|
| 1421 |
+
if (!link) {
|
| 1422 |
+
link = document.createElement("a");
|
| 1423 |
+
link.className = "cell-open";
|
| 1424 |
+
link.target = "_blank";
|
| 1425 |
+
link.rel = "noopener";
|
| 1426 |
+
meta.insertBefore(link, meta.firstChild);
|
| 1427 |
+
}
|
| 1428 |
+
link.href = url;
|
| 1429 |
+
link.textContent = "Open ↗";
|
| 1430 |
+
}
|
| 1431 |
+
|
| 1432 |
+
function dashboardFrame(src) {
|
| 1433 |
+
const iframe = document.createElement("iframe");
|
| 1434 |
+
iframe.className = "dashboard-frame";
|
| 1435 |
+
iframe.src = src;
|
| 1436 |
+
iframe.loading = "lazy";
|
| 1437 |
+
iframe.allow = "clipboard-read; clipboard-write; fullscreen";
|
| 1438 |
+
return iframe;
|
| 1439 |
+
}
|
| 1440 |
+
|
| 1441 |
+
function renderDashboardCell(meta, body, container, head) {
|
| 1442 |
+
const project = meta.dashboard_project || "";
|
| 1443 |
+
const holder = document.createElement("div");
|
| 1444 |
+
holder.className = "dashboard-shell";
|
| 1445 |
+
container.appendChild(holder);
|
| 1446 |
+
const space = body.match(/https:\/\/huggingface\.co\/spaces\/[^\s<>)"'`]+/);
|
| 1447 |
+
if (space) {
|
| 1448 |
+
const url = space[0];
|
| 1449 |
+
dashboardOpenLink(head, url);
|
| 1450 |
+
holder.appendChild(
|
| 1451 |
+
dashboardFrame(
|
| 1452 |
+
`https://${dashboardSubdomainFromUrl(url)}.hf.space/?sidebar=hidden&hide_empty_tabs=true`
|
| 1453 |
+
)
|
| 1454 |
+
);
|
| 1455 |
+
return;
|
| 1456 |
+
}
|
| 1457 |
+
if (!isLocalPreview()) {
|
| 1458 |
+
holder.className = "artifact-chip";
|
| 1459 |
+
holder.dataset.resUrl = `trackio-local-dashboard://${project}`;
|
| 1460 |
+
holder.innerHTML =
|
| 1461 |
+
"🎯 <strong>Local Trackio dashboard</strong> — publish the logbook to share it";
|
| 1462 |
+
return;
|
| 1463 |
+
}
|
| 1464 |
+
const open = "/dashboard/?project=" + encodeURIComponent(project);
|
| 1465 |
+
dashboardOpenLink(head, open);
|
| 1466 |
+
holder.appendChild(
|
| 1467 |
+
dashboardFrame(open + "&sidebar=hidden&hide_empty_tabs=true"),
|
| 1468 |
+
);
|
| 1469 |
+
}
|
| 1470 |
+
|
| 1471 |
+
const CACHE_PREFIX = "trackio-logbook:";
|
| 1472 |
+
const CACHE_TTL_MS = 24 * 60 * 60 * 1000;
|
| 1473 |
+
const CACHE_MISS_TTL_MS = 60 * 60 * 1000;
|
| 1474 |
+
|
| 1475 |
+
function cacheGet(url) {
|
| 1476 |
+
try {
|
| 1477 |
+
const raw = localStorage.getItem(CACHE_PREFIX + url);
|
| 1478 |
+
if (!raw) return undefined;
|
| 1479 |
+
const entry = JSON.parse(raw);
|
| 1480 |
+
const ttl = entry.d === null ? CACHE_MISS_TTL_MS : CACHE_TTL_MS;
|
| 1481 |
+
if (Date.now() - entry.t > ttl) {
|
| 1482 |
+
localStorage.removeItem(CACHE_PREFIX + url);
|
| 1483 |
+
return undefined;
|
| 1484 |
+
}
|
| 1485 |
+
return entry.d;
|
| 1486 |
+
} catch (e) {
|
| 1487 |
+
return undefined;
|
| 1488 |
+
}
|
| 1489 |
+
}
|
| 1490 |
+
|
| 1491 |
+
function cacheSet(url, data) {
|
| 1492 |
+
try {
|
| 1493 |
+
localStorage.setItem(
|
| 1494 |
+
CACHE_PREFIX + url,
|
| 1495 |
+
JSON.stringify({ t: Date.now(), d: data })
|
| 1496 |
+
);
|
| 1497 |
+
} catch (e) {}
|
| 1498 |
+
}
|
| 1499 |
+
|
| 1500 |
+
async function getJSON(url) {
|
| 1501 |
+
if (UNFURL_CACHE[url] !== undefined) return UNFURL_CACHE[url];
|
| 1502 |
+
const cached = cacheGet(url);
|
| 1503 |
+
if (cached !== undefined) {
|
| 1504 |
+
UNFURL_CACHE[url] = cached;
|
| 1505 |
+
return cached;
|
| 1506 |
+
}
|
| 1507 |
+
try {
|
| 1508 |
+
const r = await fetch(url);
|
| 1509 |
+
if (!r.ok) throw new Error(r.status);
|
| 1510 |
+
const j = await r.json();
|
| 1511 |
+
UNFURL_CACHE[url] = j;
|
| 1512 |
+
cacheSet(url, j);
|
| 1513 |
+
return j;
|
| 1514 |
+
} catch (e) {
|
| 1515 |
+
UNFURL_CACHE[url] = null;
|
| 1516 |
+
cacheSet(url, null);
|
| 1517 |
+
return null;
|
| 1518 |
+
}
|
| 1519 |
+
}
|
| 1520 |
+
|
| 1521 |
+
/* -------------------- routing / render -------------------- */
|
| 1522 |
+
|
| 1523 |
+
function buildTree() {
|
| 1524 |
+
const tree = document.getElementById("tree");
|
| 1525 |
+
tree.innerHTML = "";
|
| 1526 |
+
const nodes = [];
|
| 1527 |
+
(MANIFEST.root.children || []).forEach((c) => flattenTree(c, 0, nodes));
|
| 1528 |
+
nodes.forEach(({ node, depth }) => {
|
| 1529 |
+
const a = document.createElement("a");
|
| 1530 |
+
a.href = "#/" + node.slug;
|
| 1531 |
+
a.className = "depth-" + depth;
|
| 1532 |
+
a.dataset.slug = node.slug;
|
| 1533 |
+
const mark = document.createElement("span");
|
| 1534 |
+
mark.className = "tree-mark";
|
| 1535 |
+
mark.textContent = "§";
|
| 1536 |
+
a.appendChild(mark);
|
| 1537 |
+
a.appendChild(document.createTextNode(" " + node.title));
|
| 1538 |
+
tree.appendChild(a);
|
| 1539 |
+
});
|
| 1540 |
+
}
|
| 1541 |
+
|
| 1542 |
+
function highlight(slug) {
|
| 1543 |
+
document
|
| 1544 |
+
.querySelectorAll("#tree a")
|
| 1545 |
+
.forEach((a) => a.classList.toggle("active", a.dataset.slug === slug));
|
| 1546 |
+
document
|
| 1547 |
+
.getElementById("book-head")
|
| 1548 |
+
.classList.toggle("active", slug === MANIFEST.root.slug);
|
| 1549 |
+
}
|
| 1550 |
+
|
| 1551 |
+
function clearPageCache() {
|
| 1552 |
+
Object.keys(PAGE_CACHE).forEach((key) => {
|
| 1553 |
+
delete PAGE_CACHE[key];
|
| 1554 |
+
});
|
| 1555 |
+
}
|
| 1556 |
+
|
| 1557 |
+
function isLocalPreview() {
|
| 1558 |
+
return ["localhost", "127.0.0.1", "::1"].includes(location.hostname);
|
| 1559 |
+
}
|
| 1560 |
+
|
| 1561 |
+
async function fetchManifest() {
|
| 1562 |
+
const suffix = isLocalPreview() ? `?t=${Date.now()}` : "";
|
| 1563 |
+
return await (await fetch("./logbook.json" + suffix, { cache: "no-store" })).json();
|
| 1564 |
+
}
|
| 1565 |
+
|
| 1566 |
+
async function fetchPage(node) {
|
| 1567 |
+
if (PAGE_CACHE[node.file]) return PAGE_CACHE[node.file];
|
| 1568 |
+
try {
|
| 1569 |
+
const suffix = isLocalPreview()
|
| 1570 |
+
? `?rev=${encodeURIComponent(MANIFEST.revision || "")}`
|
| 1571 |
+
: "";
|
| 1572 |
+
const r = await fetch("./" + node.file + suffix, { cache: "no-store" });
|
| 1573 |
+
PAGE_CACHE[node.file] = await r.text();
|
| 1574 |
+
} catch (e) {
|
| 1575 |
+
PAGE_CACHE[node.file] = "# " + node.title + "\n\n_Could not load section._";
|
| 1576 |
+
}
|
| 1577 |
+
return PAGE_CACHE[node.file];
|
| 1578 |
+
}
|
| 1579 |
+
|
| 1580 |
+
function allNodes() {
|
| 1581 |
+
const nodes = [];
|
| 1582 |
+
flattenTree(MANIFEST.root, 0, nodes);
|
| 1583 |
+
return nodes.map(({ node }) => node);
|
| 1584 |
+
}
|
| 1585 |
+
|
| 1586 |
+
function collectPinnedCells(markdown, nodes) {
|
| 1587 |
+
const cells = [];
|
| 1588 |
+
markdown.forEach((text, index) => {
|
| 1589 |
+
const cellRe = /(^|\n)---\n<!-- trackio-cell\n([\s\S]*?)\n-->\n([\s\S]*?)(?=\n---\n<!-- trackio-cell\n|\s*$)/g;
|
| 1590 |
+
let match;
|
| 1591 |
+
let cellIndex = 0;
|
| 1592 |
+
while ((match = cellRe.exec(text))) {
|
| 1593 |
+
const meta = parseCellMeta(match[2]);
|
| 1594 |
+
if (isPinned(meta)) {
|
| 1595 |
+
cells.push({
|
| 1596 |
+
meta,
|
| 1597 |
+
body: match[3],
|
| 1598 |
+
node: nodes[index],
|
| 1599 |
+
index: cells.length,
|
| 1600 |
+
order: meta.pinned_at || meta.created_at || "",
|
| 1601 |
+
cellIndex,
|
| 1602 |
+
});
|
| 1603 |
+
}
|
| 1604 |
+
cellIndex++;
|
| 1605 |
+
}
|
| 1606 |
+
});
|
| 1607 |
+
return cells.sort(
|
| 1608 |
+
(a, b) =>
|
| 1609 |
+
a.order.localeCompare(b.order) ||
|
| 1610 |
+
a.index - b.index ||
|
| 1611 |
+
a.cellIndex - b.cellIndex
|
| 1612 |
+
);
|
| 1613 |
+
}
|
| 1614 |
+
|
| 1615 |
+
function renderPinnedNotes(cells, container) {
|
| 1616 |
+
if (!cells.length) return;
|
| 1617 |
+
const deck = document.createElement("section");
|
| 1618 |
+
deck.className = "pinned-notes";
|
| 1619 |
+
const list = document.createElement("div");
|
| 1620 |
+
list.className = "pinned-notes-list";
|
| 1621 |
+
cells.forEach(({ meta, body }) => {
|
| 1622 |
+
const cell = renderCell(meta, body, list);
|
| 1623 |
+
cell.classList.add("pinned-copy");
|
| 1624 |
+
});
|
| 1625 |
+
deck.appendChild(list);
|
| 1626 |
+
const anchor =
|
| 1627 |
+
container.querySelector(".logbook-stats") ||
|
| 1628 |
+
container.querySelector(".agent-hint");
|
| 1629 |
+
container.insertBefore(deck, anchor ? anchor.nextSibling : container.firstChild);
|
| 1630 |
+
container.closest(".book-intro").classList.add("has-pinned-notes");
|
| 1631 |
+
}
|
| 1632 |
+
|
| 1633 |
+
function removeIndexProse(body) {
|
| 1634 |
+
const h1 = Array.from(body.children).find((el) => el.tagName === "H1");
|
| 1635 |
+
if (!h1) return;
|
| 1636 |
+
let current = h1.nextElementSibling;
|
| 1637 |
+
while (current && current.tagName !== "H2") {
|
| 1638 |
+
const next = current.nextElementSibling;
|
| 1639 |
+
current.remove();
|
| 1640 |
+
current = next;
|
| 1641 |
+
}
|
| 1642 |
+
}
|
| 1643 |
+
|
| 1644 |
+
function removePageDirectory(body) {
|
| 1645 |
+
const heading = Array.from(body.children).find(
|
| 1646 |
+
(el) => el.tagName === "H2" && el.textContent.trim().toLowerCase() === "pages"
|
| 1647 |
+
);
|
| 1648 |
+
if (!heading) return;
|
| 1649 |
+
let current = heading;
|
| 1650 |
+
while (current) {
|
| 1651 |
+
const next = current.nextElementSibling;
|
| 1652 |
+
current.remove();
|
| 1653 |
+
if (next && ["H1", "H2"].includes(next.tagName)) break;
|
| 1654 |
+
current = next;
|
| 1655 |
+
}
|
| 1656 |
+
}
|
| 1657 |
+
|
| 1658 |
+
const RAIL_OBSERVERS = [];
|
| 1659 |
+
|
| 1660 |
+
async function renderLogbook(opts = {}) {
|
| 1661 |
+
const scrollY = window.scrollY;
|
| 1662 |
+
const page = document.getElementById("page");
|
| 1663 |
+
RAIL_OBSERVERS.splice(0).forEach((observer) => observer.disconnect());
|
| 1664 |
+
page.innerHTML = "";
|
| 1665 |
+
const nodes = allNodes();
|
| 1666 |
+
const markdown = await Promise.all(nodes.map(fetchPage));
|
| 1667 |
+
const pinnedCells = collectPinnedCells(markdown, nodes);
|
| 1668 |
+
let bookIntroBody = null;
|
| 1669 |
+
nodes.forEach((node, index) => {
|
| 1670 |
+
const section = document.createElement("section");
|
| 1671 |
+
section.className = "page-section";
|
| 1672 |
+
section.id = "/" + node.slug;
|
| 1673 |
+
section.dataset.slug = node.slug;
|
| 1674 |
+
|
| 1675 |
+
const layout = document.createElement("div");
|
| 1676 |
+
layout.className = "page-layout";
|
| 1677 |
+
const body = document.createElement("div");
|
| 1678 |
+
body.className = "page-body";
|
| 1679 |
+
const rail = document.createElement("aside");
|
| 1680 |
+
rail.className = "context-rail";
|
| 1681 |
+
rail.setAttribute("aria-label", `Resources for ${node.title}`);
|
| 1682 |
+
|
| 1683 |
+
renderMarkdown(markdown[index], body);
|
| 1684 |
+
if (node.slug === MANIFEST.root.slug) {
|
| 1685 |
+
section.classList.add("book-intro");
|
| 1686 |
+
removeIndexProse(body);
|
| 1687 |
+
removePageDirectory(body);
|
| 1688 |
+
const hint = buildAgentHint();
|
| 1689 |
+
const h1 = body.querySelector("h1");
|
| 1690 |
+
if (h1 && h1.parentNode === body) {
|
| 1691 |
+
body.insertBefore(hint, h1.nextSibling);
|
| 1692 |
+
} else {
|
| 1693 |
+
body.prepend(hint);
|
| 1694 |
+
}
|
| 1695 |
+
hint.after(buildLogbookStats(markdown));
|
| 1696 |
+
bookIntroBody = body;
|
| 1697 |
+
}
|
| 1698 |
+
layout.appendChild(body);
|
| 1699 |
+
layout.appendChild(rail);
|
| 1700 |
+
section.appendChild(layout);
|
| 1701 |
+
page.appendChild(section);
|
| 1702 |
+
renderRail(markdown[index], body, rail);
|
| 1703 |
+
if (window.ResizeObserver) {
|
| 1704 |
+
const observer = new ResizeObserver(() => scheduleRailPosition(body, rail));
|
| 1705 |
+
observer.observe(body);
|
| 1706 |
+
observer.observe(rail);
|
| 1707 |
+
RAIL_OBSERVERS.push(observer);
|
| 1708 |
+
}
|
| 1709 |
+
});
|
| 1710 |
+
if (bookIntroBody) renderPinnedNotes(pinnedCells, bookIntroBody);
|
| 1711 |
+
if (bookIntroBody) {
|
| 1712 |
+
const section = bookIntroBody.closest(".book-intro");
|
| 1713 |
+
const hasExtra = Array.from(bookIntroBody.children).some(
|
| 1714 |
+
(el) =>
|
| 1715 |
+
el.tagName !== "H1" &&
|
| 1716 |
+
!el.classList.contains("agent-hint") &&
|
| 1717 |
+
!el.classList.contains("logbook-stats") &&
|
| 1718 |
+
!el.classList.contains("pinned-notes")
|
| 1719 |
+
);
|
| 1720 |
+
if (section && !section.classList.contains("has-pinned-notes") && !hasExtra) {
|
| 1721 |
+
section.classList.add("book-intro-tight");
|
| 1722 |
+
}
|
| 1723 |
+
}
|
| 1724 |
+
requestAnimationFrame(() => {
|
| 1725 |
+
if (opts.preserveScroll) {
|
| 1726 |
+
window.scrollTo(0, scrollY);
|
| 1727 |
+
} else {
|
| 1728 |
+
scrollToHash({ behavior: "auto" });
|
| 1729 |
+
}
|
| 1730 |
+
updateActiveSection();
|
| 1731 |
+
});
|
| 1732 |
+
}
|
| 1733 |
+
|
| 1734 |
+
function setupResourceHover() {
|
| 1735 |
+
document.addEventListener("mouseover", (e) => {
|
| 1736 |
+
const el = e.target.closest && e.target.closest("[data-res-url]");
|
| 1737 |
+
if (!el || el.classList.contains("rail-item")) return;
|
| 1738 |
+
const url = el.getAttribute("data-res-url");
|
| 1739 |
+
const section = el.closest(".page-section");
|
| 1740 |
+
const scope = section || document;
|
| 1741 |
+
scope.querySelectorAll(".context-rail [data-res-url]").forEach((n) => {
|
| 1742 |
+
n.classList.toggle("res-hl", n.getAttribute("data-res-url") === url);
|
| 1743 |
+
});
|
| 1744 |
+
});
|
| 1745 |
+
document.addEventListener("mouseout", (e) => {
|
| 1746 |
+
const el = e.target.closest && e.target.closest("[data-res-url]");
|
| 1747 |
+
if (!el || el.classList.contains("rail-item")) return;
|
| 1748 |
+
document.querySelectorAll(".context-rail .res-hl").forEach((n) => {
|
| 1749 |
+
n.classList.remove("res-hl");
|
| 1750 |
+
});
|
| 1751 |
+
});
|
| 1752 |
+
}
|
| 1753 |
+
|
| 1754 |
+
let STATS_TOKEN = 0;
|
| 1755 |
+
let STATS_LISTENERS = false;
|
| 1756 |
+
|
| 1757 |
+
function fmtBytes(n) {
|
| 1758 |
+
if (n == null || isNaN(n)) return null;
|
| 1759 |
+
if (n < 1000) return `${n} B`;
|
| 1760 |
+
const units = ["kB", "MB", "GB", "TB"];
|
| 1761 |
+
let v = n;
|
| 1762 |
+
let i = -1;
|
| 1763 |
+
do {
|
| 1764 |
+
v /= 1000;
|
| 1765 |
+
i++;
|
| 1766 |
+
} while (v >= 1000 && i < units.length - 1);
|
| 1767 |
+
return `${v.toFixed(v < 10 ? 1 : 0)} ${units[i]}`;
|
| 1768 |
+
}
|
| 1769 |
+
|
| 1770 |
+
function spaceIdFromUrl(url) {
|
| 1771 |
+
return url.split("/spaces/")[1].split(/[?#]/)[0].replace(/\/$/, "");
|
| 1772 |
+
}
|
| 1773 |
+
|
| 1774 |
+
const LB_CELL_RE = /(^|\n)---\n<!-- trackio-cell\n([\s\S]*?)\n-->\n([\s\S]*?)(?=\n---\n<!-- trackio-cell\n|\s*$)/g;
|
| 1775 |
+
|
| 1776 |
+
function cellDashboardItems(md) {
|
| 1777 |
+
const re = new RegExp(LB_CELL_RE.source, "g");
|
| 1778 |
+
const items = [];
|
| 1779 |
+
let m;
|
| 1780 |
+
while ((m = re.exec(md))) {
|
| 1781 |
+
const meta = parseCellMeta(m[2]);
|
| 1782 |
+
if (meta.type !== "dashboard") continue;
|
| 1783 |
+
const body = m[3];
|
| 1784 |
+
const project = meta.dashboard_project || "";
|
| 1785 |
+
const sp = body.match(/https:\/\/huggingface\.co\/spaces\/[^\s<>)"'`]+/);
|
| 1786 |
+
const local = !sp;
|
| 1787 |
+
const url = sp ? sp[0] : "";
|
| 1788 |
+
const resUrl = local ? `trackio-local-dashboard://${project}` : url;
|
| 1789 |
+
items.push({
|
| 1790 |
+
id: local ? project : spaceIdFromUrl(url),
|
| 1791 |
+
local,
|
| 1792 |
+
url,
|
| 1793 |
+
resUrl,
|
| 1794 |
+
});
|
| 1795 |
+
}
|
| 1796 |
+
return items;
|
| 1797 |
+
}
|
| 1798 |
+
|
| 1799 |
+
function artifactInfoFromCell(meta, body) {
|
| 1800 |
+
const name = meta.artifact || meta.path || "";
|
| 1801 |
+
let size = null;
|
| 1802 |
+
const sm = body.match(/·\s*([\d.]+\s*[kMGT]?B)\b/);
|
| 1803 |
+
if (sm) size = sm[1].trim();
|
| 1804 |
+
if (!size && meta.size != null) size = fmtBytes(meta.size);
|
| 1805 |
+
const bucket = body.match(/https:\/\/huggingface\.co\/buckets\/[^\s<>)"'`]+/);
|
| 1806 |
+
const artUri = body.match(/trackio-artifact:\/\/\S+/);
|
| 1807 |
+
const pathUri = body.match(/trackio-local-path:\/\/\S+/);
|
| 1808 |
+
const url = bucket ? bucket[0] : "";
|
| 1809 |
+
const local = !bucket;
|
| 1810 |
+
const resUrl =
|
| 1811 |
+
url || (artUri ? artUri[0] : pathUri ? pathUri[0] : `trackio-artifact://${name}`);
|
| 1812 |
+
return {
|
| 1813 |
+
name,
|
| 1814 |
+
type: meta.artifact_type || "",
|
| 1815 |
+
size,
|
| 1816 |
+
local,
|
| 1817 |
+
isPathRef: !!meta.path,
|
| 1818 |
+
url,
|
| 1819 |
+
resUrl,
|
| 1820 |
+
};
|
| 1821 |
+
}
|
| 1822 |
+
|
| 1823 |
+
function cellArtifactItems(md) {
|
| 1824 |
+
const re = new RegExp(LB_CELL_RE.source, "g");
|
| 1825 |
+
const items = [];
|
| 1826 |
+
let m;
|
| 1827 |
+
while ((m = re.exec(md))) {
|
| 1828 |
+
const meta = parseCellMeta(m[2]);
|
| 1829 |
+
const body = m[3];
|
| 1830 |
+
const order = meta.created_at || "";
|
| 1831 |
+
if (meta.type === "artifact") {
|
| 1832 |
+
const info = artifactInfoFromCell(meta, body);
|
| 1833 |
+
if (info.name) items.push({ ...info, order });
|
| 1834 |
+
}
|
| 1835 |
+
}
|
| 1836 |
+
return items;
|
| 1837 |
+
}
|
| 1838 |
+
|
| 1839 |
+
function collectLogbookResources(markdownList) {
|
| 1840 |
+
const re = new RegExp(LB_CELL_RE.source, "g");
|
| 1841 |
+
const dashboards = new Map();
|
| 1842 |
+
markdownList.forEach((md) => {
|
| 1843 |
+
let m;
|
| 1844 |
+
while ((m = re.exec(md))) {
|
| 1845 |
+
const meta = parseCellMeta(m[2]);
|
| 1846 |
+
const body = m[3];
|
| 1847 |
+
if (meta.type !== "dashboard") continue;
|
| 1848 |
+
const project = meta.dashboard_project || "";
|
| 1849 |
+
const space = body.match(/https:\/\/huggingface\.co\/spaces\/[^\s<>)"'`]+/);
|
| 1850 |
+
const local = !space;
|
| 1851 |
+
const url = space ? space[0] : "";
|
| 1852 |
+
const key = local ? `local:${project}` : `space:${spaceIdFromUrl(url)}`;
|
| 1853 |
+
const resUrl = local ? `trackio-local-dashboard://${project}` : url;
|
| 1854 |
+
if (!dashboards.has(key))
|
| 1855 |
+
dashboards.set(key, { project, local, url, resUrl });
|
| 1856 |
+
}
|
| 1857 |
+
});
|
| 1858 |
+
const artifacts = new Map();
|
| 1859 |
+
markdownList.forEach((md) => {
|
| 1860 |
+
cellArtifactItems(md).forEach((it) => {
|
| 1861 |
+
const key = `${it.type}:${it.name}`;
|
| 1862 |
+
const prev = artifacts.get(key);
|
| 1863 |
+
if (!prev || it.order >= prev.order) artifacts.set(key, it);
|
| 1864 |
+
});
|
| 1865 |
+
});
|
| 1866 |
+
return {
|
| 1867 |
+
dashboards: Array.from(dashboards.values()).sort((a, b) =>
|
| 1868 |
+
a.project.localeCompare(b.project)
|
| 1869 |
+
),
|
| 1870 |
+
artifacts: Array.from(artifacts.values()).sort((a, b) =>
|
| 1871 |
+
a.name.localeCompare(b.name)
|
| 1872 |
+
),
|
| 1873 |
+
};
|
| 1874 |
+
}
|
| 1875 |
+
|
| 1876 |
+
function closeStatPopovers() {
|
| 1877 |
+
document
|
| 1878 |
+
.querySelectorAll(".stat-popover")
|
| 1879 |
+
.forEach((p) => (p.hidden = true));
|
| 1880 |
+
document
|
| 1881 |
+
.querySelectorAll(".stat-tile.open")
|
| 1882 |
+
.forEach((t) => t.classList.remove("open"));
|
| 1883 |
+
}
|
| 1884 |
+
|
| 1885 |
+
function ensureStatListeners() {
|
| 1886 |
+
if (STATS_LISTENERS) return;
|
| 1887 |
+
STATS_LISTENERS = true;
|
| 1888 |
+
document.addEventListener("click", closeStatPopovers);
|
| 1889 |
+
document.addEventListener("keydown", (e) => {
|
| 1890 |
+
if (e.key === "Escape") closeStatPopovers();
|
| 1891 |
+
});
|
| 1892 |
+
}
|
| 1893 |
+
|
| 1894 |
+
function stateHtml(remote, url) {
|
| 1895 |
+
return remote
|
| 1896 |
+
? `<a class="stat-row-state open" href="${esc(url)}" target="_blank" rel="noopener" title="Open in a new tab">Open ↗</a>`
|
| 1897 |
+
: `<span class="stat-row-state">publish to share</span>`;
|
| 1898 |
+
}
|
| 1899 |
+
|
| 1900 |
+
function scrollToResource(resUrl) {
|
| 1901 |
+
closeStatPopovers();
|
| 1902 |
+
if (!resUrl) return;
|
| 1903 |
+
const el = document.querySelector(
|
| 1904 |
+
`#page .page-body [data-res-url="${CSS.escape(resUrl)}"]:not(.stat-row)`
|
| 1905 |
+
);
|
| 1906 |
+
if (!el) return;
|
| 1907 |
+
el.scrollIntoView({ behavior: "smooth", block: "center" });
|
| 1908 |
+
el.classList.add("res-flash");
|
| 1909 |
+
setTimeout(() => el.classList.remove("res-flash"), 1500);
|
| 1910 |
+
}
|
| 1911 |
+
|
| 1912 |
+
function dashRowHtml(d) {
|
| 1913 |
+
const inner =
|
| 1914 |
+
`<span class="stat-row-ico">${DASHBOARD_ICON_IMG}</span>` +
|
| 1915 |
+
`<div class="stat-row-main"><div class="stat-row-title">${esc(d.project)}</div>` +
|
| 1916 |
+
`<div class="stat-row-meta">${stateHtml(!d.local, d.url)}</div></div>`;
|
| 1917 |
+
return `<div class="stat-row" data-res-url="${esc(d.resUrl)}" title="Jump to it in the logbook">${inner}</div>`;
|
| 1918 |
+
}
|
| 1919 |
+
|
| 1920 |
+
function artRowHtml(a) {
|
| 1921 |
+
const remote = !a.local && !!a.url;
|
| 1922 |
+
const parts = [a.type, a.size].filter(Boolean).map(esc);
|
| 1923 |
+
const meta = parts.length
|
| 1924 |
+
? `${parts.join(" · ")} · ${stateHtml(remote, a.url)}`
|
| 1925 |
+
: stateHtml(remote, a.url);
|
| 1926 |
+
const inner =
|
| 1927 |
+
`<span class="stat-row-ico">${ARTIFACT_ICON_IMG}</span>` +
|
| 1928 |
+
`<div class="stat-row-main"><div class="stat-row-title">${esc(a.name)}</div>` +
|
| 1929 |
+
`<div class="stat-row-meta">${meta}</div></div>`;
|
| 1930 |
+
return `<div class="stat-row" data-res-url="${esc(a.resUrl)}" title="Jump to it in the logbook">${inner}</div>`;
|
| 1931 |
+
}
|
| 1932 |
+
|
| 1933 |
+
function statTile(icon, alt, singular, plural, head, rowFn) {
|
| 1934 |
+
const tile = document.createElement("button");
|
| 1935 |
+
tile.type = "button";
|
| 1936 |
+
tile.className = "stat-tile";
|
| 1937 |
+
const render = (items) => {
|
| 1938 |
+
const count = items.length;
|
| 1939 |
+
const label = count === 1 ? singular : plural;
|
| 1940 |
+
const caret = count > 0 ? `<span class="stat-caret">▾</span>` : "";
|
| 1941 |
+
tile.innerHTML =
|
| 1942 |
+
`<img class="stat-icon" src="${icon}" alt="${esc(alt)}" />` +
|
| 1943 |
+
`<div class="stat-text"><div class="stat-num">${count}</div>` +
|
| 1944 |
+
`<div class="stat-label">${esc(label)}</div></div>` +
|
| 1945 |
+
caret;
|
| 1946 |
+
tile.disabled = count === 0;
|
| 1947 |
+
if (count > 0) {
|
| 1948 |
+
const pop = document.createElement("div");
|
| 1949 |
+
pop.className = "stat-popover";
|
| 1950 |
+
pop.hidden = true;
|
| 1951 |
+
pop.innerHTML =
|
| 1952 |
+
`<div class="stat-pop-head">${esc(head)}</div>` +
|
| 1953 |
+
items.map(rowFn).join("");
|
| 1954 |
+
pop.addEventListener("click", (e) => {
|
| 1955 |
+
if (e.target.closest("a.stat-row-state")) {
|
| 1956 |
+
e.stopPropagation();
|
| 1957 |
+
return;
|
| 1958 |
+
}
|
| 1959 |
+
e.stopPropagation();
|
| 1960 |
+
const row = e.target.closest(".stat-row");
|
| 1961 |
+
if (row) scrollToResource(row.dataset.resUrl);
|
| 1962 |
+
});
|
| 1963 |
+
tile.appendChild(pop);
|
| 1964 |
+
}
|
| 1965 |
+
};
|
| 1966 |
+
tile.addEventListener("click", (e) => {
|
| 1967 |
+
if (tile.disabled) return;
|
| 1968 |
+
e.stopPropagation();
|
| 1969 |
+
const pop = tile.querySelector(".stat-popover");
|
| 1970 |
+
if (!pop) return;
|
| 1971 |
+
const isOpen = !pop.hidden;
|
| 1972 |
+
closeStatPopovers();
|
| 1973 |
+
if (!isOpen) {
|
| 1974 |
+
pop.hidden = false;
|
| 1975 |
+
tile.classList.add("open");
|
| 1976 |
+
}
|
| 1977 |
+
});
|
| 1978 |
+
return { tile, render };
|
| 1979 |
+
}
|
| 1980 |
+
|
| 1981 |
+
function buildLogbookStats(markdownList) {
|
| 1982 |
+
const token = ++STATS_TOKEN;
|
| 1983 |
+
ensureStatListeners();
|
| 1984 |
+
const { dashboards, artifacts } = collectLogbookResources(markdownList);
|
| 1985 |
+
|
| 1986 |
+
const el = document.createElement("div");
|
| 1987 |
+
el.className = "logbook-stats";
|
| 1988 |
+
const dash = statTile(
|
| 1989 |
+
"./trackio-logo-light.png",
|
| 1990 |
+
"Trackio",
|
| 1991 |
+
"Trackio Dashboard",
|
| 1992 |
+
"Trackio Dashboards",
|
| 1993 |
+
"Dashboards created in this logbook",
|
| 1994 |
+
dashRowHtml
|
| 1995 |
+
);
|
| 1996 |
+
const art = statTile(
|
| 1997 |
+
"./bucket-icon.svg",
|
| 1998 |
+
"Bucket",
|
| 1999 |
+
"Artifact",
|
| 2000 |
+
"Artifacts",
|
| 2001 |
+
"Artifacts created in this logbook",
|
| 2002 |
+
artRowHtml
|
| 2003 |
+
);
|
| 2004 |
+
dash.render(dashboards);
|
| 2005 |
+
art.render(artifacts);
|
| 2006 |
+
el.appendChild(dash.tile);
|
| 2007 |
+
el.appendChild(art.tile);
|
| 2008 |
+
|
| 2009 |
+
const scanText = markdownList
|
| 2010 |
+
.map((md) =>
|
| 2011 |
+
md.replace(/(`{3,4}|~{3,4})(html|raw)[^\n]*\n[\s\S]*?\n\1/g, " ")
|
| 2012 |
+
)
|
| 2013 |
+
.join("\n");
|
| 2014 |
+
const seen = new Set(
|
| 2015 |
+
dashboards.map((d) =>
|
| 2016 |
+
d.local ? `local:${d.project}` : `space:${spaceIdFromUrl(d.url)}`
|
| 2017 |
+
)
|
| 2018 |
+
);
|
| 2019 |
+
const remoteSpaces = new Map();
|
| 2020 |
+
extractUrls(scanText).forEach((url) => {
|
| 2021 |
+
const item = classifyResource(url);
|
| 2022 |
+
if (item && item.kind === "space" && !item.local) {
|
| 2023 |
+
remoteSpaces.set(item.url, item);
|
| 2024 |
+
}
|
| 2025 |
+
});
|
| 2026 |
+
remoteSpaces.forEach((s) => {
|
| 2027 |
+
const key = `space:${s.id}`;
|
| 2028 |
+
if (seen.has(key)) return;
|
| 2029 |
+
getJSON(`https://huggingface.co/api/spaces/${s.id}`)
|
| 2030 |
+
.then((d) => {
|
| 2031 |
+
if (STATS_TOKEN !== token) return;
|
| 2032 |
+
const tags = (d && d.tags) || [];
|
| 2033 |
+
if (
|
| 2034 |
+
!seen.has(key) &&
|
| 2035 |
+
tags.some((t) => String(t).toLowerCase() === "trackio")
|
| 2036 |
+
) {
|
| 2037 |
+
seen.add(key);
|
| 2038 |
+
dashboards.push({
|
| 2039 |
+
project: s.id,
|
| 2040 |
+
local: false,
|
| 2041 |
+
url: s.url,
|
| 2042 |
+
resUrl: s.url,
|
| 2043 |
+
});
|
| 2044 |
+
dashboards.sort((a, b) => a.project.localeCompare(b.project));
|
| 2045 |
+
dash.render(dashboards);
|
| 2046 |
+
}
|
| 2047 |
+
})
|
| 2048 |
+
.catch(() => {});
|
| 2049 |
+
});
|
| 2050 |
+
return el;
|
| 2051 |
+
}
|
| 2052 |
+
|
| 2053 |
+
function buildAgentHint() {
|
| 2054 |
+
const onSpaces =
|
| 2055 |
+
/\.hf\.space$/.test(location.hostname) ||
|
| 2056 |
+
/(^|\.)huggingface\.co$/.test(location.hostname);
|
| 2057 |
+
let source = "";
|
| 2058 |
+
if (onSpaces && MANIFEST.space_id) {
|
| 2059 |
+
source = ` ${MANIFEST.space_id}`;
|
| 2060 |
+
} else if (/^https?:$/.test(location.protocol)) {
|
| 2061 |
+
source = ` ${location.origin}/`;
|
| 2062 |
+
}
|
| 2063 |
+
const command = `trackio logbook read${source}`;
|
| 2064 |
+
const tokens = MANIFEST.agent_view_tokens;
|
| 2065 |
+
const div = document.createElement("div");
|
| 2066 |
+
div.className = "agent-hint";
|
| 2067 |
+
const label = document.createElement("span");
|
| 2068 |
+
label.className = "agent-hint-label";
|
| 2069 |
+
label.textContent = "Read from the CLI:";
|
| 2070 |
+
const code = document.createElement("code");
|
| 2071 |
+
code.textContent = command;
|
| 2072 |
+
const copy = document.createElement("button");
|
| 2073 |
+
copy.className = "copy";
|
| 2074 |
+
copy.type = "button";
|
| 2075 |
+
copy.title = "Copy";
|
| 2076 |
+
copy.textContent = "⧉";
|
| 2077 |
+
copy.addEventListener("click", () => copyText(command, copy, "⧉"));
|
| 2078 |
+
const note = document.createElement("span");
|
| 2079 |
+
note.className = "agent-hint-note";
|
| 2080 |
+
note.textContent =
|
| 2081 |
+
"compact view for agents" + (tokens ? ` · ~${fmt(tokens)} tokens` : "");
|
| 2082 |
+
div.appendChild(label);
|
| 2083 |
+
div.appendChild(code);
|
| 2084 |
+
div.appendChild(copy);
|
| 2085 |
+
div.appendChild(note);
|
| 2086 |
+
return div;
|
| 2087 |
+
}
|
| 2088 |
+
|
| 2089 |
+
function currentSlug() {
|
| 2090 |
+
const slug = (location.hash || "").replace(/^#\//, "") || MANIFEST.root.slug;
|
| 2091 |
+
return findNode(MANIFEST.root, slug) ? slug : MANIFEST.root.slug;
|
| 2092 |
+
}
|
| 2093 |
+
|
| 2094 |
+
function scrollToHash(opts = {}) {
|
| 2095 |
+
const slug = currentSlug();
|
| 2096 |
+
if (!location.hash) {
|
| 2097 |
+
window.scrollTo({ top: 0, behavior: opts.behavior || "auto" });
|
| 2098 |
+
highlight(slug);
|
| 2099 |
+
return;
|
| 2100 |
+
}
|
| 2101 |
+
const section = document.getElementById("/" + slug);
|
| 2102 |
+
if (section) section.scrollIntoView({ behavior: opts.behavior || "smooth" });
|
| 2103 |
+
highlight(slug);
|
| 2104 |
+
}
|
| 2105 |
+
|
| 2106 |
+
function navigateToLogbookSlug(target) {
|
| 2107 |
+
const slug = String(target || "").replace(/^#?\//, "").trim();
|
| 2108 |
+
if (!slug || !findNode(MANIFEST.root, slug)) return;
|
| 2109 |
+
const hash = "#/" + slug;
|
| 2110 |
+
if (location.hash === hash) {
|
| 2111 |
+
scrollToHash({ behavior: "smooth" });
|
| 2112 |
+
} else {
|
| 2113 |
+
location.hash = hash;
|
| 2114 |
+
}
|
| 2115 |
+
}
|
| 2116 |
+
|
| 2117 |
+
function setupFigureNavigation() {
|
| 2118 |
+
window.addEventListener("message", (event) => {
|
| 2119 |
+
const data = event.data;
|
| 2120 |
+
if (!data || data.type !== "trackio-logbook:navigate") return;
|
| 2121 |
+
// Only accept messages from one of this logbook's sandboxed figure
|
| 2122 |
+
// iframes, rather than from an arbitrary same-origin page.
|
| 2123 |
+
const isFigureFrame = Array.from(
|
| 2124 |
+
document.querySelectorAll("iframe.figure-frame")
|
| 2125 |
+
).some((frame) => frame.contentWindow === event.source);
|
| 2126 |
+
if (!isFigureFrame) return;
|
| 2127 |
+
navigateToLogbookSlug(data.target);
|
| 2128 |
+
});
|
| 2129 |
+
}
|
| 2130 |
+
|
| 2131 |
+
let SCROLL_FRAME = 0;
|
| 2132 |
+
function updateActiveSection() {
|
| 2133 |
+
cancelAnimationFrame(SCROLL_FRAME);
|
| 2134 |
+
SCROLL_FRAME = requestAnimationFrame(() => {
|
| 2135 |
+
const sections = Array.from(document.querySelectorAll(".page-section"));
|
| 2136 |
+
if (!sections.length) return;
|
| 2137 |
+
const marker = Math.min(window.innerHeight * 0.28, 180);
|
| 2138 |
+
let active = sections[0];
|
| 2139 |
+
sections.forEach((section) => {
|
| 2140 |
+
if (section.getBoundingClientRect().top <= marker) active = section;
|
| 2141 |
+
});
|
| 2142 |
+
if (
|
| 2143 |
+
window.innerHeight + window.scrollY >=
|
| 2144 |
+
document.documentElement.scrollHeight - 2
|
| 2145 |
+
) {
|
| 2146 |
+
active = sections[sections.length - 1];
|
| 2147 |
+
}
|
| 2148 |
+
highlight(active.dataset.slug);
|
| 2149 |
+
});
|
| 2150 |
+
}
|
| 2151 |
+
|
| 2152 |
+
function startLiveReload() {
|
| 2153 |
+
if (!isLocalPreview()) return;
|
| 2154 |
+
setInterval(async () => {
|
| 2155 |
+
try {
|
| 2156 |
+
const next = await fetchManifest();
|
| 2157 |
+
if (!next || next.revision === MANIFEST.revision) return;
|
| 2158 |
+
MANIFEST = next;
|
| 2159 |
+
clearPageCache();
|
| 2160 |
+
document.title = MANIFEST.title + " · Trackio Logbook";
|
| 2161 |
+
document.getElementById("book-title").textContent = MANIFEST.title;
|
| 2162 |
+
document.getElementById("book-head").setAttribute("aria-label", MANIFEST.title);
|
| 2163 |
+
buildTree();
|
| 2164 |
+
renderLogbook({ preserveScroll: true });
|
| 2165 |
+
} catch (e) {}
|
| 2166 |
+
}, LIVE_RELOAD_MS);
|
| 2167 |
+
}
|
| 2168 |
+
|
| 2169 |
+
function setupConnect() {
|
| 2170 |
+
const space = MANIFEST.space_id;
|
| 2171 |
+
if (!space) return;
|
| 2172 |
+
const steps = [
|
| 2173 |
+
{ t: "Install Trackio, if you don't have it yet.", c: "uv tool install trackio" },
|
| 2174 |
+
{ t: "Add the Trackio skill for your agent, then reload it.", c: "trackio skills add" },
|
| 2175 |
+
{ t: "Connect to this logbook.", c: `trackio logbook open ${space}` },
|
| 2176 |
+
];
|
| 2177 |
+
const ol = document.getElementById("connect-steps");
|
| 2178 |
+
steps.forEach((s, i) => {
|
| 2179 |
+
const li = document.createElement("li");
|
| 2180 |
+
const title = document.createElement("div");
|
| 2181 |
+
title.className = "step-title";
|
| 2182 |
+
title.textContent = `${i + 1}. ${s.t}`;
|
| 2183 |
+
const block = document.createElement("div");
|
| 2184 |
+
block.className = "codeblock";
|
| 2185 |
+
const code = document.createElement("code");
|
| 2186 |
+
code.textContent = s.c;
|
| 2187 |
+
const copy = document.createElement("button");
|
| 2188 |
+
copy.className = "copy";
|
| 2189 |
+
copy.type = "button";
|
| 2190 |
+
copy.title = "Copy";
|
| 2191 |
+
copy.textContent = "⧉";
|
| 2192 |
+
copy.addEventListener("click", () => copyText(s.c, copy, "⧉"));
|
| 2193 |
+
block.appendChild(code);
|
| 2194 |
+
block.appendChild(copy);
|
| 2195 |
+
li.appendChild(title);
|
| 2196 |
+
li.appendChild(block);
|
| 2197 |
+
ol.appendChild(li);
|
| 2198 |
+
});
|
| 2199 |
+
|
| 2200 |
+
const agentPrompt =
|
| 2201 |
+
`Read and help maintain this Trackio experiment logbook ("${MANIFEST.title}").\n\n` +
|
| 2202 |
+
"1. If you don't have Trackio, install it: uv tool install trackio\n" +
|
| 2203 |
+
"2. Add the Trackio skill for your agent: trackio skills add (then reload)\n" +
|
| 2204 |
+
`3. Connect to this logbook: trackio logbook open ${space}\n\n` +
|
| 2205 |
+
"Start with `trackio logbook read`; use `trackio logbook read page \"...\"` " +
|
| 2206 |
+
"for a page-level view, then fetch relevant details with " +
|
| 2207 |
+
"`trackio logbook read cell cell_<id>`. If I've given you " +
|
| 2208 |
+
'write access to the Space, add findings with `trackio logbook cell markdown "..." ' +
|
| 2209 |
+
'--page "..."` and they will sync back automatically.';
|
| 2210 |
+
|
| 2211 |
+
const foot = document.getElementById("sidebar-foot");
|
| 2212 |
+
foot.hidden = false;
|
| 2213 |
+
const modal = document.getElementById("modal");
|
| 2214 |
+
const open = () => (modal.hidden = false);
|
| 2215 |
+
const close = () => (modal.hidden = true);
|
| 2216 |
+
document.getElementById("connect-btn").addEventListener("click", open);
|
| 2217 |
+
document.getElementById("modal-close").addEventListener("click", close);
|
| 2218 |
+
modal.querySelector(".modal-backdrop").addEventListener("click", close);
|
| 2219 |
+
document.addEventListener("keydown", (e) => {
|
| 2220 |
+
if (e.key === "Escape") close();
|
| 2221 |
+
});
|
| 2222 |
+
const agentBtn = document.getElementById("copy-agent");
|
| 2223 |
+
agentBtn.addEventListener("click", () =>
|
| 2224 |
+
copyText(agentPrompt, agentBtn, "Copy for agent")
|
| 2225 |
+
);
|
| 2226 |
+
}
|
| 2227 |
+
|
| 2228 |
+
function copyText(text, btn, restore) {
|
| 2229 |
+
const done = () => {
|
| 2230 |
+
const prev = btn.textContent;
|
| 2231 |
+
btn.textContent = restore === "⧉" ? "✓" : "Copied!";
|
| 2232 |
+
btn.classList.add("copied");
|
| 2233 |
+
setTimeout(() => {
|
| 2234 |
+
btn.textContent = restore;
|
| 2235 |
+
btn.classList.remove("copied");
|
| 2236 |
+
}, 1400);
|
| 2237 |
+
void prev;
|
| 2238 |
+
};
|
| 2239 |
+
if (navigator.clipboard && navigator.clipboard.writeText) {
|
| 2240 |
+
navigator.clipboard.writeText(text).then(done, done);
|
| 2241 |
+
} else {
|
| 2242 |
+
const ta = document.createElement("textarea");
|
| 2243 |
+
ta.value = text;
|
| 2244 |
+
document.body.appendChild(ta);
|
| 2245 |
+
ta.select();
|
| 2246 |
+
try {
|
| 2247 |
+
document.execCommand("copy");
|
| 2248 |
+
} catch (e) {}
|
| 2249 |
+
document.body.removeChild(ta);
|
| 2250 |
+
done();
|
| 2251 |
+
}
|
| 2252 |
+
}
|
| 2253 |
+
|
| 2254 |
+
async function init() {
|
| 2255 |
+
MANIFEST = await fetchManifest();
|
| 2256 |
+
document.title = MANIFEST.title + " · Trackio Logbook";
|
| 2257 |
+
document.getElementById("book-title").textContent = MANIFEST.title;
|
| 2258 |
+
document.getElementById("book-head").setAttribute("aria-label", MANIFEST.title);
|
| 2259 |
+
document.getElementById("book-head").addEventListener("click", () => {
|
| 2260 |
+
const target = "#/" + MANIFEST.root.slug;
|
| 2261 |
+
if (location.hash === target) scrollToHash();
|
| 2262 |
+
else location.hash = target;
|
| 2263 |
+
});
|
| 2264 |
+
buildTree();
|
| 2265 |
+
setupConnect();
|
| 2266 |
+
setupResourceHover();
|
| 2267 |
+
setupFigureNavigation();
|
| 2268 |
+
window.addEventListener("hashchange", () => scrollToHash());
|
| 2269 |
+
window.addEventListener("scroll", updateActiveSection, { passive: true });
|
| 2270 |
+
await renderLogbook();
|
| 2271 |
+
startLiveReload();
|
| 2272 |
+
}
|
| 2273 |
+
|
| 2274 |
+
init();
|
| 2275 |
+
})();
|
logbook.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": 1,
|
| 3 |
+
"title": "Repro - Solving Positive Linear Programs with Differential Privacy",
|
| 4 |
+
"emoji": "🔒",
|
| 5 |
+
"space_id": "txus/repro-positive-linear-programs-dp",
|
| 6 |
+
"paper": {
|
| 7 |
+
"arxiv_id": "2604.26838"
|
| 8 |
+
},
|
| 9 |
+
"tags": [
|
| 10 |
+
"icml2026-repro",
|
| 11 |
+
"paper-zlSioMUQ2Y"
|
| 12 |
+
],
|
| 13 |
+
"updated_at": "2026-07-17T09:01:30+00:00",
|
| 14 |
+
"root": {
|
| 15 |
+
"slug": "index",
|
| 16 |
+
"title": "Repro - Solving Positive Linear Programs with Differential Privacy",
|
| 17 |
+
"file": "pages/index.md",
|
| 18 |
+
"children": [
|
| 19 |
+
{
|
| 20 |
+
"slug": "claim-1-instance-dependent-a-max-opt-1-5-bound-improving-hsu-et-al-by-opt-0-5",
|
| 21 |
+
"title": "Claim 1: instance-dependent (A_max·OPT)^1.5 bound, improving Hsu et al. by OPT^0.5",
|
| 22 |
+
"file": "pages/claim-1-instance-dependent-a-max-opt-1-5-bound-improving-hsu-et-al-by-opt-0-5/page.md",
|
| 23 |
+
"children": []
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"slug": "claim-2-data-independent-d-1-5-alpha-3-5-bound",
|
| 27 |
+
"title": "Claim 2: data-independent d^1.5 / alpha^3.5 bound",
|
| 28 |
+
"file": "pages/claim-2-data-independent-d-1-5-alpha-3-5-bound/page.md",
|
| 29 |
+
"children": []
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"slug": "claim-3-mixed-packing-covering-bounds-theorem-2",
|
| 33 |
+
"title": "Claim 3: mixed packing-covering bounds (Theorem 2)",
|
| 34 |
+
"file": "pages/claim-3-mixed-packing-covering-bounds-theorem-2/page.md",
|
| 35 |
+
"children": []
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
"slug": "claim-4-truncated-softmax-and-algorithms-1-2",
|
| 39 |
+
"title": "Claim 4: truncated softmax and Algorithms 1-2",
|
| 40 |
+
"file": "pages/claim-4-truncated-softmax-and-algorithms-1-2/page.md",
|
| 41 |
+
"children": []
|
| 42 |
+
},
|
| 43 |
+
{
|
| 44 |
+
"slug": "claim-5-mwu-variants-for-mixed-packing-covering-algorithms-3-4",
|
| 45 |
+
"title": "Claim 5: MWU variants for mixed packing-covering (Algorithms 3-4)",
|
| 46 |
+
"file": "pages/claim-5-mwu-variants-for-mixed-packing-covering-algorithms-3-4/page.md",
|
| 47 |
+
"children": []
|
| 48 |
+
},
|
| 49 |
+
{
|
| 50 |
+
"slug": "setup-and-methodology",
|
| 51 |
+
"title": "Setup and methodology",
|
| 52 |
+
"file": "pages/setup-and-methodology/page.md",
|
| 53 |
+
"children": []
|
| 54 |
+
},
|
| 55 |
+
{
|
| 56 |
+
"slug": "conclusion",
|
| 57 |
+
"title": "Conclusion",
|
| 58 |
+
"file": "pages/conclusion/page.md",
|
| 59 |
+
"children": []
|
| 60 |
+
},
|
| 61 |
+
{
|
| 62 |
+
"slug": "private-positive-lp-repro",
|
| 63 |
+
"title": "private-positive-lp-repro",
|
| 64 |
+
"file": "pages/private-positive-lp-repro/page.md",
|
| 65 |
+
"children": []
|
| 66 |
+
}
|
| 67 |
+
]
|
| 68 |
+
},
|
| 69 |
+
"agent_view_tokens": 12644,
|
| 70 |
+
"revision": "1784278890332411000"
|
| 71 |
+
}
|
pages/claim-1-instance-dependent-a-max-opt-1-5-bound-improving-hsu-et-al-by-opt-0-5/page.md
ADDED
|
@@ -0,0 +1,451 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claim 1: instance-dependent (A_max·OPT)^1.5 bound, improving Hsu et al. by OPT^0.5
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "code", "id": "cell_cf996b0cb648", "created_at": "2026-07-17T08:17:56+00:00", "title": "Run: uv exp_claim1_width.py (exit 0)", "command": ["uv", "run", "python", "exp_claim1_width.py"], "exit_code": 0, "duration_s": 7.341}
|
| 7 |
+
-->
|
| 8 |
+
````bash
|
| 9 |
+
$ uv run python exp_claim1_width.py
|
| 10 |
+
````
|
| 11 |
+
|
| 12 |
+
exit 0 · 7.3s
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
````python title=exp_claim1_width.py
|
| 16 |
+
"""Claim 1: the OPT^0.5 improvement over Hsu et al. (2014).
|
| 17 |
+
|
| 18 |
+
The paper's Section 3.1 is explicit about *where* the improvement comes from. Both
|
| 19 |
+
Hsu et al. and this paper run a dense MWU on smax^U; they differ in the per-step
|
| 20 |
+
increase bound:
|
| 21 |
+
|
| 22 |
+
Hsu et al. (no positivity): smax(eta A x_{t+1}) - smax(eta A x_t)
|
| 23 |
+
<~ <grad, eta A Delta> + eta^2 ||A Delta||_inf^2
|
| 24 |
+
this paper (positivity): smax(eta A x_{t+1}) - smax(eta A x_t)
|
| 25 |
+
<~ (1 + eta ||A Delta||_inf) <grad, eta A Delta>
|
| 26 |
+
|
| 27 |
+
The quadratic error term forces Hsu et al. to take eta ~ alpha/rho^2-ish, giving
|
| 28 |
+
T ~ rho^2 log n / alpha^2 iterations; the positivity bound gives T ~ rho log n / alpha^2.
|
| 29 |
+
Here rho = width = max_i,j A_ij * OPT <= A_max * OPT.
|
| 30 |
+
|
| 31 |
+
Since s ~ 1/eps' ~ sqrt(T), a factor rho in T is a factor sqrt(rho) in s. With
|
| 32 |
+
rho = A_max*OPT this is exactly the claimed OPT^0.5 (Theorem 1 vs Hsu et al.'s
|
| 33 |
+
OPT^2/(alpha^2 eps) for set cover where A_max = 1).
|
| 34 |
+
|
| 35 |
+
This script verifies the two ingredients empirically:
|
| 36 |
+
(a) the positivity-based per-step bound HOLDS on real iterates of Algorithm 1,
|
| 37 |
+
and the Hsu-style bound is LOOSER (larger) by a factor ~ rho;
|
| 38 |
+
(b) T_paper / T_hsu = 1/rho and s_paper / s_hsu = 1/sqrt(rho), so the exponent of
|
| 39 |
+
OPT in s drops from 2.0 to 1.5.
|
| 40 |
+
"""
|
| 41 |
+
|
| 42 |
+
from __future__ import annotations
|
| 43 |
+
|
| 44 |
+
import json
|
| 45 |
+
|
| 46 |
+
import numpy as np
|
| 47 |
+
|
| 48 |
+
from ppl.fitting import fit_both
|
| 49 |
+
from ppl.instances import PackingLP, solve_packing_opt
|
| 50 |
+
from ppl.smax import grad_smax, smax
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def wide_packing(n, d, spread, rng):
|
| 54 |
+
"""Packing instance with a controllable width rho = A_max * OPT.
|
| 55 |
+
|
| 56 |
+
NOTE: rho is scale-invariant -- rescaling A by c scales OPT by 1/c, leaving
|
| 57 |
+
A_max*OPT fixed -- so sweeping a_max does nothing. The width is driven by the
|
| 58 |
+
*spread* of the column scales: a column with small entries admits a large x_j
|
| 59 |
+
(raising OPT) while some other entry keeps A_max at 1.
|
| 60 |
+
"""
|
| 61 |
+
scales = np.logspace(-np.log10(spread), 0, d) # column scales in [1/spread, 1]
|
| 62 |
+
A = rng.uniform(0.0, 1.0, size=(n, d)) * scales[None, :]
|
| 63 |
+
A[rng.integers(n), d - 1] = 1.0 # pin A_max = 1
|
| 64 |
+
return PackingLP(A=A, opt=solve_packing_opt(A))
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
def per_step_bounds(n=400, d=12, spread=1.0, alpha=0.5, seed=0, steps=60):
|
| 68 |
+
"""(a) Compare the two per-step increase bounds on real Algorithm-1 iterates."""
|
| 69 |
+
rng = np.random.default_rng(seed)
|
| 70 |
+
lp = wide_packing(n, d, spread, rng)
|
| 71 |
+
A, opt = lp.A, lp.opt
|
| 72 |
+
a_max = float(A.max())
|
| 73 |
+
H = a_max
|
| 74 |
+
eta = alpha / (10.0 * H * opt)
|
| 75 |
+
U = 1.0 / min(n, 50)
|
| 76 |
+
|
| 77 |
+
rows = []
|
| 78 |
+
x = np.zeros(d)
|
| 79 |
+
Ax = np.zeros(n)
|
| 80 |
+
for t in range(steps):
|
| 81 |
+
g = grad_smax(eta * Ax, U)
|
| 82 |
+
j = int(np.argmin(g @ A)) # greedy (non-private) oracle step
|
| 83 |
+
delta = np.zeros(d)
|
| 84 |
+
delta[j] = opt
|
| 85 |
+
ADelta = opt * A[:, j]
|
| 86 |
+
|
| 87 |
+
actual = smax(eta * (Ax + ADelta), U) - smax(eta * Ax, U)
|
| 88 |
+
lin = float(g @ (eta * ADelta))
|
| 89 |
+
w = float(np.abs(eta * ADelta).max())
|
| 90 |
+
bound_paper = (1.0 + w) * lin # eq (1), needs w <= 1
|
| 91 |
+
bound_hsu = lin + float(np.linalg.norm(eta * ADelta, np.inf)) ** 2
|
| 92 |
+
|
| 93 |
+
rows.append({
|
| 94 |
+
"t": t,
|
| 95 |
+
"actual": actual,
|
| 96 |
+
"bound_paper": bound_paper,
|
| 97 |
+
"bound_hsu": bound_hsu,
|
| 98 |
+
"linear": lin,
|
| 99 |
+
"eta_ADelta_inf": w,
|
| 100 |
+
})
|
| 101 |
+
x, Ax = x + delta, Ax + ADelta
|
| 102 |
+
|
| 103 |
+
paper_ok = all(r["actual"] <= r["bound_paper"] + 1e-9 for r in rows)
|
| 104 |
+
hsu_ok = all(r["actual"] <= r["bound_hsu"] + 1e-9 for r in rows)
|
| 105 |
+
# how much slack does each bound carry, relative to the actual increase?
|
| 106 |
+
ratio_paper = float(np.median([r["bound_paper"] / max(r["actual"], 1e-15) for r in rows]))
|
| 107 |
+
ratio_hsu = float(np.median([r["bound_hsu"] / max(r["actual"], 1e-15) for r in rows]))
|
| 108 |
+
return {
|
| 109 |
+
"rho_width": float(A.max() * opt),
|
| 110 |
+
"paper_bound_holds": paper_ok,
|
| 111 |
+
"hsu_bound_holds": hsu_ok,
|
| 112 |
+
"median_slack_paper": ratio_paper,
|
| 113 |
+
"median_slack_hsu": ratio_hsu,
|
| 114 |
+
"rows": rows,
|
| 115 |
+
}
|
| 116 |
+
|
| 117 |
+
|
| 118 |
+
def iteration_and_s_scaling(alpha=0.5, eps=1.0, delta=1e-6, beta=0.1, n=1000, d=10):
|
| 119 |
+
"""(b) T and s as a function of the width rho = A_max*OPT, for both analyses."""
|
| 120 |
+
out = []
|
| 121 |
+
for rho in np.logspace(0, 3, 25):
|
| 122 |
+
# paper: T ~ rho log n / alpha^2 (Alg 1 line 3 with H*OPT = rho)
|
| 123 |
+
T_paper = 20.0 * rho * np.log(n) / alpha**2
|
| 124 |
+
# Hsu-style: quadratic error term costs an extra factor rho
|
| 125 |
+
T_hsu = 20.0 * rho**2 * np.log(n) / alpha**2
|
| 126 |
+
# s ~ 60 * rho * (log d + log(T/beta)) / (alpha * eps'), eps' = eps/(2 sqrt(T log 1/delta))
|
| 127 |
+
def s_of(T):
|
| 128 |
+
epsp = eps / (2.0 * np.sqrt(T * np.log(1.0 / delta)))
|
| 129 |
+
return 60.0 * rho * (np.log(d) + np.log(T / beta)) / (alpha * epsp)
|
| 130 |
+
|
| 131 |
+
def L_of(T): # the polylog factor O~(.) hides
|
| 132 |
+
return np.log(d) + np.log(T / beta)
|
| 133 |
+
|
| 134 |
+
out.append({"rho": float(rho), "T_paper": T_paper, "T_hsu": T_hsu,
|
| 135 |
+
"s_paper": s_of(T_paper), "s_hsu": s_of(T_hsu),
|
| 136 |
+
"L_paper": L_of(T_paper), "L_hsu": L_of(T_hsu)})
|
| 137 |
+
return out
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
def fit_exponent(xs, ys) -> float:
|
| 141 |
+
return float(np.polyfit(np.log(xs), np.log(ys), 1)[0])
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
def max_certifiable_eta(lp, alpha=0.5, steps=25):
|
| 145 |
+
"""The crux of Claim 1, measured rather than assumed.
|
| 146 |
+
|
| 147 |
+
Both analyses run the same MWU; they differ in the per-step inequality they can
|
| 148 |
+
certify, and hence in the largest step size eta they may take. T = 2 log n/(eta alpha),
|
| 149 |
+
so a smaller admissible eta means proportionally more iterations.
|
| 150 |
+
|
| 151 |
+
paper (uses positivity, eq. 1): needs eta*||A Delta||_inf <= alpha/10
|
| 152 |
+
Hsu-style (generic, quadratic): needs eta^2 ||A Delta||_inf^2 <= (alpha/10) *
|
| 153 |
+
<grad smax(eta A x), eta A Delta>
|
| 154 |
+
i.e. the quadratic error must not swamp the
|
| 155 |
+
linear signal.
|
| 156 |
+
|
| 157 |
+
We bisect on eta for each criterion, on real greedy MWU iterates.
|
| 158 |
+
"""
|
| 159 |
+
A, opt = lp.A, lp.opt
|
| 160 |
+
n, d = A.shape
|
| 161 |
+
U = 1.0 / min(n, 50)
|
| 162 |
+
|
| 163 |
+
def worst(eta):
|
| 164 |
+
"""Return (max eta||A Delta||_inf, max quadratic/linear ratio).
|
| 165 |
+
|
| 166 |
+
The maxima are over BOTH the iterates t and the candidate coordinates j: the
|
| 167 |
+
exponential mechanism may return any j in [d], so each analysis must certify
|
| 168 |
+
its per-step inequality uniformly over j -- that is exactly why the worst-case
|
| 169 |
+
width rho = A_max*OPT (rather than the width realised along the greedy path)
|
| 170 |
+
enters the iteration count.
|
| 171 |
+
"""
|
| 172 |
+
Ax = np.zeros(n)
|
| 173 |
+
w_max, q_max = 0.0, 0.0
|
| 174 |
+
for _ in range(steps):
|
| 175 |
+
g = grad_smax(eta * Ax, U)
|
| 176 |
+
gA = g @ A # (d,) linear term per candidate column
|
| 177 |
+
colmax = A.max(axis=0) # (d,) width per candidate column
|
| 178 |
+
w_j = eta * opt * colmax # eta ||A Delta||_inf for each j
|
| 179 |
+
lin_j = eta * opt * gA
|
| 180 |
+
w_max = max(w_max, float(w_j.max()))
|
| 181 |
+
q_max = max(q_max, float((w_j**2 / np.maximum(lin_j, 1e-300)).max()))
|
| 182 |
+
j = int(np.argmin(gA)) # the algorithm itself still follows greedy
|
| 183 |
+
Ax += opt * A[:, j]
|
| 184 |
+
return w_max, q_max
|
| 185 |
+
|
| 186 |
+
def bisect(ok):
|
| 187 |
+
lo, hi = 1e-12, 1e3
|
| 188 |
+
if ok(lo) is False:
|
| 189 |
+
return lo
|
| 190 |
+
for _ in range(40):
|
| 191 |
+
mid = np.sqrt(lo * hi)
|
| 192 |
+
if ok(mid):
|
| 193 |
+
lo = mid
|
| 194 |
+
else:
|
| 195 |
+
hi = mid
|
| 196 |
+
return lo
|
| 197 |
+
|
| 198 |
+
thr = alpha / 10.0
|
| 199 |
+
eta_paper = bisect(lambda e: worst(e)[0] <= thr)
|
| 200 |
+
eta_hsu = bisect(lambda e: worst(e)[1] <= thr)
|
| 201 |
+
return {
|
| 202 |
+
"eta_paper": eta_paper,
|
| 203 |
+
"eta_hsu": eta_hsu,
|
| 204 |
+
# T = 2 log n / (eta alpha), so the T ratio is the inverse eta ratio
|
| 205 |
+
"T_ratio_hsu_over_paper": eta_paper / max(eta_hsu, 1e-300),
|
| 206 |
+
}
|
| 207 |
+
|
| 208 |
+
|
| 209 |
+
def eta_sweep(alpha=0.5, seed=3):
|
| 210 |
+
"""T_hsu/T_paper should grow linearly in the width rho = A_max*OPT."""
|
| 211 |
+
rng = np.random.default_rng(seed)
|
| 212 |
+
rows = []
|
| 213 |
+
for spread in [1.0, 3.0, 10.0, 30.0, 100.0]:
|
| 214 |
+
lp = wide_packing(300, 8, spread, rng)
|
| 215 |
+
rho = float(lp.A.max() * lp.opt)
|
| 216 |
+
m = max_certifiable_eta(lp, alpha=alpha)
|
| 217 |
+
m.update({"spread": spread, "rho": rho})
|
| 218 |
+
rows.append(m)
|
| 219 |
+
return rows
|
| 220 |
+
|
| 221 |
+
|
| 222 |
+
def per_step_sweep():
|
| 223 |
+
"""The looseness of the Hsu-style bound relative to the paper's grows with the width.
|
| 224 |
+
|
| 225 |
+
We sweep A_max (hence rho = A_max*OPT) and report the median ratio of the two
|
| 226 |
+
per-step bounds on real Algorithm-1 iterates.
|
| 227 |
+
"""
|
| 228 |
+
rows = []
|
| 229 |
+
for spread in [1.0, 3.0, 10.0, 30.0, 100.0, 300.0]:
|
| 230 |
+
r = per_step_bounds(spread=spread, steps=40)
|
| 231 |
+
ratios = [x["bound_hsu"] / max(x["bound_paper"], 1e-15) for x in r["rows"]]
|
| 232 |
+
rows.append({
|
| 233 |
+
"spread": spread,
|
| 234 |
+
"rho": r["rho_width"],
|
| 235 |
+
"paper_bound_holds": r["paper_bound_holds"],
|
| 236 |
+
"hsu_bound_holds": r["hsu_bound_holds"],
|
| 237 |
+
"median_bound_ratio_hsu_over_paper": float(np.median(ratios)),
|
| 238 |
+
})
|
| 239 |
+
return rows
|
| 240 |
+
|
| 241 |
+
|
| 242 |
+
def main() -> dict:
|
| 243 |
+
res: dict = {}
|
| 244 |
+
res["per_step"] = per_step_bounds()
|
| 245 |
+
res["per_step_sweep"] = per_step_sweep()
|
| 246 |
+
res["eta_sweep"] = eta_sweep()
|
| 247 |
+
# does T_hsu/T_paper grow like rho^1?
|
| 248 |
+
es = res["eta_sweep"]
|
| 249 |
+
res["T_ratio_exponent_in_rho"] = fit_exponent(
|
| 250 |
+
[x["rho"] for x in es], [x["T_ratio_hsu_over_paper"] for x in es]
|
| 251 |
+
)
|
| 252 |
+
|
| 253 |
+
sc = iteration_and_s_scaling()
|
| 254 |
+
rho = np.array([r["rho"] for r in sc])
|
| 255 |
+
res["scaling_rows"] = sc
|
| 256 |
+
res["T_exponent_paper"] = fit_exponent(rho, [r["T_paper"] for r in sc])
|
| 257 |
+
res["T_exponent_hsu"] = fit_exponent(rho, [r["T_hsu"] for r in sc])
|
| 258 |
+
# s exponent in rho = A_max*OPT. Paper predicts 1.5, Hsu-style 2.0.
|
| 259 |
+
# O~(.) hides a (log d + log(T/beta)) factor, so we fit both raw and corrected.
|
| 260 |
+
res["s_exponent_paper"] = fit_both(rho, [r["s_paper"] for r in sc],
|
| 261 |
+
[r["L_paper"] for r in sc])
|
| 262 |
+
res["s_exponent_hsu"] = fit_both(rho, [r["s_hsu"] for r in sc],
|
| 263 |
+
[r["L_hsu"] for r in sc])
|
| 264 |
+
res["improvement_factor_at_rho_1000"] = sc[-1]["s_hsu"] / sc[-1]["s_paper"]
|
| 265 |
+
res["sqrt_rho_at_1000"] = float(np.sqrt(1000.0))
|
| 266 |
+
# the polynomial part of the improvement is exactly sqrt(rho); the residual is the
|
| 267 |
+
# ratio of the hidden log factors
|
| 268 |
+
res["improvement_polylog_corrected_at_rho_1000"] = (
|
| 269 |
+
(sc[-1]["s_hsu"] / sc[-1]["L_hsu"]) / (sc[-1]["s_paper"] / sc[-1]["L_paper"])
|
| 270 |
+
)
|
| 271 |
+
return res
|
| 272 |
+
|
| 273 |
+
|
| 274 |
+
if __name__ == "__main__":
|
| 275 |
+
r = main()
|
| 276 |
+
with open("outputs/claim1_width.json", "w") as f:
|
| 277 |
+
json.dump(r, f, indent=2)
|
| 278 |
+
ps = r["per_step"]
|
| 279 |
+
print(f"width rho = A_max*OPT : {ps['rho_width']:.3f}")
|
| 280 |
+
print(f"paper per-step bound holds : {ps['paper_bound_holds']}")
|
| 281 |
+
print(f"Hsu-style per-step bound holds : {ps['hsu_bound_holds']}")
|
| 282 |
+
print(f"median slack, paper bound : {ps['median_slack_paper']:.4f}")
|
| 283 |
+
print(f"median slack, Hsu-style bound : {ps['median_slack_hsu']:.4f}")
|
| 284 |
+
print()
|
| 285 |
+
print(f"T exponent in rho: paper {r['T_exponent_paper']:.4f} | Hsu {r['T_exponent_hsu']:.4f}")
|
| 286 |
+
print(f"s exponent in rho (raw) : paper {r['s_exponent_paper']['raw']:.4f} "
|
| 287 |
+
f"| Hsu {r['s_exponent_hsu']['raw']:.4f} <- biased by the log(T/beta) O~ hides")
|
| 288 |
+
print(f"s exponent in rho (polylog-corrected): paper "
|
| 289 |
+
f"{r['s_exponent_paper']['polylog_corrected']:.4f} (predicted 1.5) "
|
| 290 |
+
f"| Hsu {r['s_exponent_hsu']['polylog_corrected']:.4f} (predicted 2.0)")
|
| 291 |
+
print(f"improvement at rho=1000: {r['improvement_factor_at_rho_1000']:.2f}x raw, "
|
| 292 |
+
f"{r['improvement_polylog_corrected_at_rho_1000']:.2f}x polylog-corrected "
|
| 293 |
+
f"(sqrt(rho) = {r['sqrt_rho_at_1000']:.2f})")
|
| 294 |
+
|
| 295 |
+
print("\nper-step bound ratio (Hsu / paper) vs width, on real Alg-1 iterates:")
|
| 296 |
+
for row in r["per_step_sweep"]:
|
| 297 |
+
print(f" spread={row['spread']:>6} rho={row['rho']:10.3f} "
|
| 298 |
+
f"ratio={row['median_bound_ratio_hsu_over_paper']:8.3f} "
|
| 299 |
+
f"paper bound holds={row['paper_bound_holds']}")
|
| 300 |
+
|
| 301 |
+
print("\nlargest step size each analysis can certify (measured by bisection):")
|
| 302 |
+
for row in r["eta_sweep"]:
|
| 303 |
+
print(f" rho={row['rho']:9.3f} eta_paper={row['eta_paper']:.3e} "
|
| 304 |
+
f"eta_hsu={row['eta_hsu']:.3e} T_hsu/T_paper={row['T_ratio_hsu_over_paper']:9.3f}")
|
| 305 |
+
print(f" -> T_hsu/T_paper exponent in rho: {r['T_ratio_exponent_in_rho']:.4f}")
|
| 306 |
+
print(" OBSERVATION (not a refutation): on these positive instances the generic")
|
| 307 |
+
print(" quadratic analysis costs only a constant factor ~2, not a factor rho.")
|
| 308 |
+
print(" Positivity makes the linear term <grad smax, A Delta> grow with the width,")
|
| 309 |
+
print(" so the additive eta^2||A Delta||_inf^2 term stays proportional to it.")
|
| 310 |
+
print(" The rho-factor separation the paper's T relies on is a WORST-CASE")
|
| 311 |
+
print(" statement; we could not exhibit it on random or structured instances.")
|
| 312 |
+
|
| 313 |
+
ok = (
|
| 314 |
+
all(x["paper_bound_holds"] for x in r["per_step_sweep"])
|
| 315 |
+
and ps["paper_bound_holds"]
|
| 316 |
+
and abs(r["s_exponent_paper"]["polylog_corrected"] - 1.5) < 0.02
|
| 317 |
+
and abs(r["s_exponent_hsu"]["polylog_corrected"] - 2.0) < 0.02
|
| 318 |
+
and abs(r["improvement_polylog_corrected_at_rho_1000"] - r["sqrt_rho_at_1000"]) < 0.5
|
| 319 |
+
)
|
| 320 |
+
print(f"\n[{'PASS' if ok else 'FAIL'}] Claim 1 mechanism")
|
| 321 |
+
raise SystemExit(0 if ok else 1)
|
| 322 |
+
|
| 323 |
+
````
|
| 324 |
+
|
| 325 |
+
|
| 326 |
+
````output
|
| 327 |
+
width rho = A_max*OPT : 1.478
|
| 328 |
+
paper per-step bound holds : True
|
| 329 |
+
Hsu-style per-step bound holds : True
|
| 330 |
+
median slack, paper bound : 1.0455
|
| 331 |
+
median slack, Hsu-style bound : 1.0940
|
| 332 |
+
|
| 333 |
+
T exponent in rho: paper 1.0000 | Hsu 2.0000
|
| 334 |
+
s exponent in rho (raw) : paper 1.5705 | Hsu 2.1161 <- biased by the log(T/beta) O~ hides
|
| 335 |
+
s exponent in rho (polylog-corrected): paper 1.5000 (predicted 1.5) | Hsu 2.0000 (predicted 2.0)
|
| 336 |
+
improvement at rho=1000: 43.88x raw, 31.62x polylog-corrected (sqrt(rho) = 31.62)
|
| 337 |
+
|
| 338 |
+
per-step bound ratio (Hsu / paper) vs width, on real Alg-1 iterates:
|
| 339 |
+
spread= 1.0 rho= 1.478 ratio= 1.047 paper bound holds=True
|
| 340 |
+
spread= 3.0 rho= 3.284 ratio= 1.015 paper bound holds=True
|
| 341 |
+
spread= 10.0 rho= 10.346 ratio= 1.005 paper bound holds=True
|
| 342 |
+
spread= 30.0 rho= 30.342 ratio= 1.002 paper bound holds=True
|
| 343 |
+
spread= 100.0 rho= 100.482 ratio= 1.000 paper bound holds=True
|
| 344 |
+
spread= 300.0 rho= 301.271 ratio= 1.000 paper bound holds=True
|
| 345 |
+
|
| 346 |
+
largest step size each analysis can certify (measured by bisection):
|
| 347 |
+
rho= 1.399 eta_paper=3.575e-02 eta_hsu=1.729e-02 T_hsu/T_paper= 2.067
|
| 348 |
+
rho= 3.099 eta_paper=1.613e-02 eta_hsu=8.128e-03 T_hsu/T_paper= 1.985
|
| 349 |
+
rho= 10.123 eta_paper=4.939e-03 eta_hsu=2.541e-03 T_hsu/T_paper= 1.944
|
| 350 |
+
rho= 30.170 eta_paper=1.657e-03 eta_hsu=8.291e-04 T_hsu/T_paper= 1.999
|
| 351 |
+
rho= 100.267 eta_paper=4.987e-04 eta_hsu=2.523e-04 T_hsu/T_paper= 1.976
|
| 352 |
+
-> T_hsu/T_paper exponent in rho: -0.0072
|
| 353 |
+
OBSERVATION (not a refutation): on these positive instances the generic
|
| 354 |
+
quadratic analysis costs only a constant factor ~2, not a factor rho.
|
| 355 |
+
Positivity makes the linear term <grad smax, A Delta> grow with the width,
|
| 356 |
+
so the additive eta^2||A Delta||_inf^2 term stays proportional to it.
|
| 357 |
+
The rho-factor separation the paper's T relies on is a WORST-CASE
|
| 358 |
+
statement; we could not exhibit it on random or structured instances.
|
| 359 |
+
|
| 360 |
+
[PASS] Claim 1 mechanism
|
| 361 |
+
|
| 362 |
+
````
|
| 363 |
+
|
| 364 |
+
|
| 365 |
+
---
|
| 366 |
+
<!-- trackio-cell
|
| 367 |
+
{"type": "markdown", "id": "cell_3cecb6791415", "created_at": "2026-07-17T08:18:23+00:00", "title": "Claim 1 verdict"}
|
| 368 |
+
-->
|
| 369 |
+
## Verdict: **partially reproduced** — the bound and its exponent reproduce exactly; the *superiority over Hsu et al.* is a worst-case claim we could confirm analytically but **not exhibit empirically**.
|
| 370 |
+
|
| 371 |
+
Claim 1 (Theorem 1 / Theorem 6.1): `s = O~((A_max·OPT)^1.5 / (alpha^2 eps))`, improving Hsu et al. (2014)'s `O~(OPT^2/(alpha^2 eps))` for private set cover (where `A_max = 1`) by a factor `OPT^0.5`.
|
| 372 |
+
|
| 373 |
+
### What reproduces exactly
|
| 374 |
+
|
| 375 |
+
Writing `rho = A_max·OPT` for the width, the two analyses differ **only** in the per-step increase bound they can certify, hence in the step size `eta`, hence in `T = 2 log n/(eta·alpha)`:
|
| 376 |
+
|
| 377 |
+
| | per-step bound | admissible `eta` | `T` | `s ~ sqrt(T)·rho` |
|
| 378 |
+
|---|---|---|---|---|
|
| 379 |
+
| **this paper** (uses positivity, eq. 1) | `(1 + eta\|\|A Delta\|\|_inf)<grad, eta A Delta>` | `~alpha/(10 rho)` | `~rho log n/alpha^2` | **`rho^1.5`** |
|
| 380 |
+
| **Hsu et al.** (generic, quadratic error) | `<grad, eta A Delta> + eta^2\|\|A Delta\|\|_inf^2` | `~alpha/rho^2` | `~rho^2 log n/alpha^2` | **`rho^2`** |
|
| 381 |
+
|
| 382 |
+
Measured (fitting the bound formula over `rho` from 1 to 1000):
|
| 383 |
+
|
| 384 |
+
- `T` exponent in `rho`: **1.0000** (paper) vs **2.0000** (Hsu) — exact.
|
| 385 |
+
- `s` exponent in `rho`, raw fit: 1.5705 vs 2.1161. **Polylog-corrected: 1.5000 vs 2.0000** — exactly the claimed 1.5 and 2.0. (The raw fit is biased by the `log(T/beta)` factor `O~()` hides; see *Setup and methodology*.)
|
| 386 |
+
- Improvement at `rho = 1000`: **31.62x** polylog-corrected, versus `sqrt(rho) = 31.62`. **Exact.** Since `rho = A_max·OPT` and `A_max = 1` for set cover, `sqrt(rho) = OPT^0.5` — precisely the claimed factor.
|
| 387 |
+
|
| 388 |
+
The paper's own per-step inequality **eq (1)** was also checked on real Algorithm-1 iterates at every width tested (`rho` from 1.5 to 301): **always holds**.
|
| 389 |
+
|
| 390 |
+
### What does not reproduce empirically, and why that is not a refutation
|
| 391 |
+
|
| 392 |
+
The `rho`-factor separation is a **worst-case** statement. We tried to exhibit it by measuring, via bisection on real iterates, the largest step size each analysis can actually certify:
|
| 393 |
+
|
| 394 |
+
| `rho` | `eta` paper | `eta` Hsu | `T_hsu/T_paper` |
|
| 395 |
+
|---|---|---|---|
|
| 396 |
+
| 1.4 | 3.58e-02 | 1.73e-02 | 2.07 |
|
| 397 |
+
| 3.1 | 1.61e-02 | 8.13e-03 | 1.99 |
|
| 398 |
+
| 10.1 | 4.94e-03 | 2.54e-03 | 1.94 |
|
| 399 |
+
| 30.2 | 1.66e-03 | 8.29e-04 | 2.00 |
|
| 400 |
+
| 100.3 | 4.99e-04 | 2.52e-04 | 1.98 |
|
| 401 |
+
|
| 402 |
+
The ratio is a **constant ~2**, not `rho` (fitted exponent **-0.007**, theory would want 1.0). The reason is structural and, we think, interesting: **on positive LPs the smax weights are largest exactly where the entries are large**, so the linear term `<grad smax, A Delta>` grows *in proportion to* the width, and the additive `eta^2\|\|A Delta\|\|_inf^2` term never gets a chance to dominate it. Every random and structured positive instance we constructed has this property.
|
| 403 |
+
|
| 404 |
+
This does **not** contradict Theorem 1, which is an upper bound proved for the worst case. It does mean our experiments cannot independently confirm that Hsu et al.'s analysis is *necessarily* worse on positive LPs — only that the paper's stated bounds stand in the claimed 1.5-vs-2.0 relation. Constructing a positive instance that realises the `rho` gap (if one exists) is the obvious follow-up; note the paper never claims one does, since `A_max·OPT` enters as an upper bound on `\|\|A Delta\|\|_inf`.
|
| 405 |
+
|
| 406 |
+
A related caveat worth recording: `rho = A_max·OPT` is **scale-invariant** for packing LPs (rescaling `A` by `c` scales `OPT` by `1/c`), so it cannot be varied by changing `A_max` — only by spreading the column scales. We initially swept `a_max` and got a flat `rho = 1.478`; the sweep above varies the column-scale spread instead.
|
| 407 |
+
|
| 408 |
+
|
| 409 |
+
---
|
| 410 |
+
<!-- trackio-cell
|
| 411 |
+
{"type": "figure", "id": "cell_7dc1cd0e2a21", "created_at": "2026-07-17T08:20:49+00:00", "title": "s vs width: OPT^1.5 (this paper) vs OPT^2 (Hsu et al.)"}
|
| 412 |
+
-->
|
| 413 |
+
````html
|
| 414 |
+
<html>
|
| 415 |
+
<head><meta charset="utf-8" /></head>
|
| 416 |
+
<body>
|
| 417 |
+
<div style="height:430px; width:100%;"> <script>window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
|
| 418 |
+
<script charset="utf-8" src="https://cdn.plot.ly/plotly-3.7.0.min.js" integrity="sha256-jvTGqxNp8AGWEcvNLVuKr+8j5dGe9Yw51LQkmDH+IYA=" crossorigin="anonymous"></script> <div id="d2764f66-ecf5-4719-9fd6-d8ac42523162" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("d2764f66-ecf5-4719-9fd6-d8ac42523162")) { Plotly.newPlot( "d2764f66-ecf5-4719-9fd6-d8ac42523162", [{"line":{"color":"#3b82f6","width":3},"name":"this paper (Thm 1)","x":[1.0,1.333521432163324,1.7782794100389228,2.371373705661655,3.1622776601683795,4.216965034285822,5.623413251903491,7.498942093324558,10.0,13.33521432163324,17.78279410038923,23.71373705661655,31.622776601683793,42.169650342858226,56.23413251903491,74.98942093324558,100.0,133.3521432163324,177.82794100389228,237.13737056616552,316.22776601683796,421.6965034285823,562.341325190349,749.8942093324558,1000.0],"y":[228994.2161962393,361928.9357603394,571657.0744152949,902351.0238231798,1423495.9998806124,2244347.0087403054,3536618.000651512,5570078.260578346,8768379.597669134,13796583.54040601,21698345.106561273,34110858.96669057,53601548.05689052,84195297.35017353,132199841.87312756,207497572.20603308,325566802.15546685,510643622.5691143,800666765.4467572,1255009121.767217,1966563559.5343215,3080631149.293448,4824434132.012157,7553220481.947926,11822272909.30469],"type":"scatter"},{"line":{"color":"#ef4444","dash":"dash","width":3},"name":"Hsu et al. (2014)","x":[1.0,1.333521432163324,1.7782794100389228,2.371373705661655,3.1622776601683795,4.216965034285822,5.623413251903491,7.498942093324558,10.0,13.33521432163324,17.78279410038923,23.71373705661655,31.622776601683793,42.169650342858226,56.23413251903491,74.98942093324558,100.0,133.3521432163324,177.82794100389228,237.13737056616552,316.22776601683796,421.6965034285823,562.341325190349,749.8942093324558,1000.0],"y":[228994.2161962393,428682.3298279625,800490.6269760244,1491379.4448373257,2772805.0917585306,5145488.504207166,9531852.925578024,17629132.246641807,32556680.21554668,60041537.10134708,110587995.81395802,203444700.44910344,373853095.1350805,686281891.6062249,1258574623.7213583,2305980784.317889,4221393881.146944,7721484121.989789,14112692893.031359,25775145641.447433,47042568109.43082,85801493279.17332,156396395488.49136,284904834397.1599,518711974073.92194],"type":"scatter"}], {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"type":"log","title":{"text":"ρ = A\u003csub\u003emax\u003c\u002fsub\u003e · OPT"}},"yaxis":{"type":"log","title":{"text":"s (constraints allowed to be violated)"}},"font":{"size":13},"margin":{"l":70,"r":30,"t":60,"b":60},"legend":{"orientation":"h","yanchor":"bottom","y":1.02,"x":0},"title":{"text":"Claim 1: violated-constraint bound vs width ρ = A\u003csub\u003emax\u003c\u002fsub\u003e·OPT\u003cbr\u003e\u003csub\u003epolylog-corrected exponents: paper 1.500 (theory 1.5), Hsu 2.000 (theory 2.0) — a √ρ = OPT\u003csup\u003e0.5\u003c\u002fsup\u003e improvement\u003c\u002fsub\u003e"},"height":430}, {"responsive": true} ) }; </script> </div>
|
| 419 |
+
</body>
|
| 420 |
+
</html>
|
| 421 |
+
````
|
| 422 |
+
|
| 423 |
+
````raw
|
| 424 |
+
rho,T_paper,T_hsu,s_paper,s_hsu,L_paper,L_hsu
|
| 425 |
+
1.0,552.620422318571,552.620422318571,228994.2161962393,228994.2161962393,10.919841554578039,10.919841554578039
|
| 426 |
+
1.333521432163324,736.9311770129616,982.7135185761288,361928.9357603394,428682.3298279625,11.207664691202293,11.495487827826551
|
| 427 |
+
1.7782794100389228,982.7135185761288,1747.539216050832,571657.0744152949,800490.6269760244,11.495487827826551,12.07113410107506
|
| 428 |
+
2.371373705661655,1310.4695386978983,3107.6130061387553,902351.0238231798,1491379.4448373257,11.783310964450806,12.646780374323573
|
| 429 |
+
3.1622776601683795,1747.5392160508322,5526.20422318571,1423495.9998806124,2772805.0917585306,12.07113410107506,13.222426647572085
|
| 430 |
+
4.216965034285822,2330.380998149678,9827.135185761286,2244347.0087403054,5145488.504207166,12.358957237699318,13.798072920820594
|
| 431 |
+
5.623413251903491,3107.6130061387557,17475.392160508323,3536618.000651512,9531852.925578024,12.646780374323573,14.373719194069107
|
| 432 |
+
7.498942093324558,4144.068546555526,31076.130061387554,5570078.260578346,17629132.246641807,12.934603510947827,14.94936546731762
|
| 433 |
+
10.0,5526.204223185709,55262.04223185709,8768379.597669134,32556680.21554668,13.222426647572085,15.525011740566129
|
| 434 |
+
13.33521432163324,7369.311770129616,98271.35185761287,13796583.54040601,60041537.10134708,13.51024978419634,16.10065801381464
|
| 435 |
+
17.78279410038923,9827.135185761286,174753.92160508322,21698345.106561273,110587995.81395802,13.798072920820594,16.676304287063154
|
| 436 |
+
23.71373705661655,13104.695386978985,310761.3006138755,34110858.96669057,203444700.44910344,14.085896057444852,17.251950560311663
|
| 437 |
+
31.622776601683793,17475.39216050832,552620.4223185709,53601548.05689052,373853095.1350805,14.373719194069107,17.827596833560175
|
| 438 |
+
42.169650342858226,23303.809981496783,982713.5185761286,84195297.35017353,686281891.6062249,14.661542330693361,18.403243106808688
|
| 439 |
+
56.23413251903491,31076.130061387554,1747539.2160508323,132199841.87312756,1258574623.7213583,14.94936546731762,18.9788893800572
|
| 440 |
+
74.98942093324558,41440.68546555526,3107613.0061387555,207497572.20603308,2305980784.317889,15.237188603941874,19.55453565330571
|
| 441 |
+
100.0,55262.04223185709,5526204.22318571,325566802.15546685,4221393881.146944,15.525011740566129,20.130181926554222
|
| 442 |
+
133.3521432163324,73693.11770129616,9827135.185761288,510643622.5691143,7721484121.989789,15.812834877190387,20.705828199802735
|
| 443 |
+
177.82794100389228,98271.35185761287,17475392.16050832,800666765.4467572,14112692893.031359,16.10065801381464,21.281474473051244
|
| 444 |
+
237.13737056616552,131046.95386978984,31076130.06138755,1255009121.767217,25775145641.447433,16.388481150438896,21.857120746299756
|
| 445 |
+
316.22776601683796,174753.92160508322,55262042.2318571,1966563559.5343215,47042568109.43082,16.676304287063154,22.43276701954827
|
| 446 |
+
421.6965034285823,233038.09981496786,98271351.8576129,3080631149.293448,85801493279.17332,16.96412742368741,23.008413292796778
|
| 447 |
+
562.341325190349,310761.3006138755,174753921.6050832,4824434132.012157,156396395488.49136,17.251950560311663,23.58405956604529
|
| 448 |
+
749.8942093324558,414406.8546555526,310761300.61387557,7553220481.947926,284904834397.1599,17.53977369693592,24.159705839293803
|
| 449 |
+
1000.0,552620.4223185709,552620422.318571,11822272909.30469,518711974073.92194,17.827596833560175,24.735352112542312
|
| 450 |
+
|
| 451 |
+
````
|
pages/claim-2-data-independent-d-1-5-alpha-3-5-bound/page.md
ADDED
|
@@ -0,0 +1,447 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claim 2: data-independent d^1.5 / alpha^3.5 bound
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "code", "id": "cell_ca7f3bc8d029", "created_at": "2026-07-17T08:18:48+00:00", "title": "Run: uv exp_claim2_algs.py (exit 0)", "command": ["uv", "run", "python", "exp_claim2_algs.py"], "exit_code": 0, "duration_s": 1.884}
|
| 7 |
+
-->
|
| 8 |
+
````bash
|
| 9 |
+
$ uv run python exp_claim2_algs.py
|
| 10 |
+
````
|
| 11 |
+
|
| 12 |
+
exit 0 · 1.9s
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
````python title=exp_claim2_algs.py
|
| 16 |
+
"""Claims 1, 2, 4: end-to-end Algorithms 1 and 2, plus the two lemmas that the
|
| 17 |
+
privacy argument rests on.
|
| 18 |
+
|
| 19 |
+
Checks:
|
| 20 |
+
A. Sensitivity of the oracle score Q is <= 3H*OPT/s (proof of Lemma 8 / Claim 17).
|
| 21 |
+
This is THE privacy-critical inequality: it is what U = 1/s buys. We measure it
|
| 22 |
+
empirically over random neighbouring instances (differing in one constraint).
|
| 23 |
+
B. Lemma 7 / 15: eps' = eps/(2 sqrt(T log 1/delta)) composes to (eps, delta)-DP.
|
| 24 |
+
C. Lemma 8: <grad smax^U(eta A x), A Delta_t> <= 1 + alpha/10 at every iteration.
|
| 25 |
+
Lemma 16: <grad smin^U(eta A x), A Delta_t> >= 1 - alpha/10.
|
| 26 |
+
D. Theorem 6 / 10 end-to-end utility: 1^T x >= (1-alpha) OPT (packing) resp.
|
| 27 |
+
1^T x <= (1+alpha) OPT (covering), and #violated <= s.
|
| 28 |
+
E. Data-independent bound (Theorem 6.2 / 10.2): s scales as d^1.5 / alpha^3.5.
|
| 29 |
+
"""
|
| 30 |
+
|
| 31 |
+
from __future__ import annotations
|
| 32 |
+
|
| 33 |
+
import json
|
| 34 |
+
import sys
|
| 35 |
+
|
| 36 |
+
import numpy as np
|
| 37 |
+
|
| 38 |
+
from ppl.algorithms import (
|
| 39 |
+
covering_algorithm2,
|
| 40 |
+
covering_params,
|
| 41 |
+
packing_algorithm1,
|
| 42 |
+
packing_params,
|
| 43 |
+
)
|
| 44 |
+
from ppl.fitting import fit_both
|
| 45 |
+
from ppl.mechanism import strong_composition_eps
|
| 46 |
+
from ppl.smax import grad_smax, grad_smin
|
| 47 |
+
from ppl.instances import random_covering, random_packing
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
# ---------------------------------------------------------------- A. sensitivity
|
| 51 |
+
def sensitivity_check(trials=300, n=150, d=8, alpha=0.5, eps=1.0, delta=1e-6,
|
| 52 |
+
beta=0.1, seed=0, preprocess=True):
|
| 53 |
+
"""Empirical max |Q(j,A) - Q(j,A')| over neighbouring A, A' vs the claimed 3H*OPT/s."""
|
| 54 |
+
rng = np.random.default_rng(seed)
|
| 55 |
+
worst_ratio = 0.0
|
| 56 |
+
rows = []
|
| 57 |
+
for _ in range(trials):
|
| 58 |
+
lp = random_packing(n, d, rng, a_max=1.0)
|
| 59 |
+
A, opt = lp.A, lp.opt
|
| 60 |
+
p = packing_params(1.0, opt, n, d, alpha, beta, eps, delta, preprocess)
|
| 61 |
+
H = p.H
|
| 62 |
+
Ap = np.minimum(A, H) if preprocess else A.copy()
|
| 63 |
+
U = max(p.U, 1.0 / n)
|
| 64 |
+
|
| 65 |
+
# neighbouring instance: replace one constraint (row) arbitrarily
|
| 66 |
+
A2 = Ap.copy()
|
| 67 |
+
i = rng.integers(n)
|
| 68 |
+
A2[i] = rng.uniform(0, min(1.0, H), size=d)
|
| 69 |
+
|
| 70 |
+
x = rng.uniform(0, opt / d, size=d) # arbitrary iterate
|
| 71 |
+
g1 = grad_smax(p.eta * (Ap @ x), U)
|
| 72 |
+
g2 = grad_smax(p.eta * (A2 @ x), U)
|
| 73 |
+
q1 = -(g1 @ Ap) * opt
|
| 74 |
+
q2 = -(g2 @ A2) * opt
|
| 75 |
+
observed = float(np.abs(q1 - q2).max())
|
| 76 |
+
claimed = 3.0 * H * opt / (1.0 / U) # 3H*OPT*U, with U clamped as in the alg
|
| 77 |
+
rows.append({"observed": observed, "claimed_bound": claimed})
|
| 78 |
+
worst_ratio = max(worst_ratio, observed / claimed)
|
| 79 |
+
return {"max_observed_over_claimed": worst_ratio,
|
| 80 |
+
"n_trials": trials,
|
| 81 |
+
"holds": worst_ratio <= 1.0}
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
# ---------------------------------------------------------------- B. composition
|
| 85 |
+
def composition_check():
|
| 86 |
+
rows = []
|
| 87 |
+
ok = True
|
| 88 |
+
for eps in [0.1, 0.5, 1.0, 2.0]:
|
| 89 |
+
for T in [10, 100, 10_000, 1_000_000]:
|
| 90 |
+
for delta in [1e-4, 1e-6, 1e-9]:
|
| 91 |
+
epsp = eps / (2.0 * np.sqrt(T * np.log(1.0 / delta)))
|
| 92 |
+
total = strong_composition_eps(epsp, T, delta)
|
| 93 |
+
rows.append({"eps": eps, "T": T, "delta": delta,
|
| 94 |
+
"composed_eps": float(total), "within_budget": bool(total <= eps)})
|
| 95 |
+
ok &= total <= eps
|
| 96 |
+
return {"holds": bool(ok), "rows": rows}
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
# ---------------------------------------------------------------- C+D. end-to-end
|
| 100 |
+
def run_packing(n=300, d=6, alpha=0.5, eps=1.0, delta=1e-6, beta=0.1, seed=0,
|
| 101 |
+
preprocess=False, cap_iters=4000):
|
| 102 |
+
rng = np.random.default_rng(seed)
|
| 103 |
+
lp = random_packing(n, d, rng, a_max=1.0)
|
| 104 |
+
p = packing_params(1.0, lp.opt, n, d, alpha, beta, eps, delta, preprocess)
|
| 105 |
+
r = packing_algorithm1(lp.A, lp.opt, alpha, eps, delta, beta, rng,
|
| 106 |
+
preprocess=preprocess, max_iters=cap_iters)
|
| 107 |
+
obj_ratio = r.obj / lp.opt
|
| 108 |
+
return {
|
| 109 |
+
"n": n, "d": d, "alpha": alpha, "opt": lp.opt, "a_max": lp.a_max,
|
| 110 |
+
"T_theory": p.T, "T_run": min(p.T, cap_iters), "iters_capped": p.T > cap_iters,
|
| 111 |
+
"s_bound": p.s, "s_bound_vacuous": bool(p.s >= n),
|
| 112 |
+
"obj": r.obj, "obj_over_opt": obj_ratio,
|
| 113 |
+
"utility_ok": bool(obj_ratio >= 1.0 - alpha - 1e-9),
|
| 114 |
+
"violations": r.violations,
|
| 115 |
+
"violations_le_s": bool(r.violations <= p.s),
|
| 116 |
+
"max_residual": float((lp.A @ r.x).max()),
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
def run_covering(n=300, d=6, alpha=0.5, eps=1.0, delta=1e-6, beta=0.1, seed=0,
|
| 121 |
+
preprocess=False, cap_iters=4000):
|
| 122 |
+
rng = np.random.default_rng(seed)
|
| 123 |
+
lp = random_covering(n, d, rng, a_max=1.0)
|
| 124 |
+
p = covering_params(1.0, lp.opt, n, d, alpha, beta, eps, delta, preprocess)
|
| 125 |
+
r = covering_algorithm2(lp.A, lp.opt, alpha, eps, delta, beta, rng,
|
| 126 |
+
preprocess=preprocess, max_iters=cap_iters)
|
| 127 |
+
obj_ratio = r.obj / lp.opt
|
| 128 |
+
return {
|
| 129 |
+
"n": n, "d": d, "alpha": alpha, "opt": lp.opt,
|
| 130 |
+
"T_theory": p.T, "T_run": min(p.T, cap_iters), "iters_capped": p.T > cap_iters,
|
| 131 |
+
"s_bound": p.s, "s_bound_vacuous": bool(p.s >= n),
|
| 132 |
+
"obj": r.obj, "obj_over_opt": obj_ratio,
|
| 133 |
+
"utility_ok": bool(obj_ratio <= 1.0 + alpha + 1e-9),
|
| 134 |
+
"violations": r.violations,
|
| 135 |
+
"violations_le_s": bool(r.violations <= p.s),
|
| 136 |
+
"min_residual": float((lp.A @ r.x).min()),
|
| 137 |
+
}
|
| 138 |
+
|
| 139 |
+
|
| 140 |
+
# ---------------------------------------------------------------- C. oracle lemma
|
| 141 |
+
def oracle_lemma_check(n=200, d=6, alpha=0.5, eps=1.0, delta=1e-6, beta=0.1,
|
| 142 |
+
seed=1, steps=300):
|
| 143 |
+
"""Lemma 8 (packing) and Lemma 16 (covering) at every iteration."""
|
| 144 |
+
rng = np.random.default_rng(seed)
|
| 145 |
+
lp = random_packing(n, d, rng, a_max=1.0)
|
| 146 |
+
p = packing_params(1.0, lp.opt, n, d, alpha, beta, eps, delta, False)
|
| 147 |
+
from ppl.mechanism import exponential_mechanism
|
| 148 |
+
|
| 149 |
+
U = max(p.U, 1.0 / n)
|
| 150 |
+
Ax = np.zeros(n)
|
| 151 |
+
worst_pack = -np.inf
|
| 152 |
+
for _ in range(steps):
|
| 153 |
+
g = grad_smax(p.eta * Ax, U)
|
| 154 |
+
scores = -(g @ lp.A) * lp.opt
|
| 155 |
+
j = exponential_mechanism(scores, p.eps_prime, p.sensitivity, rng)
|
| 156 |
+
val = float(g @ (lp.opt * lp.A[:, j])) # <grad smax, A Delta_t>
|
| 157 |
+
worst_pack = max(worst_pack, val)
|
| 158 |
+
Ax += lp.opt * lp.A[:, j]
|
| 159 |
+
|
| 160 |
+
lpc = random_covering(n, d, rng, a_max=1.0)
|
| 161 |
+
pc = covering_params(1.0, lpc.opt, n, d, alpha, beta, eps, delta, False)
|
| 162 |
+
Uc = max(pc.U, 1.0 / n)
|
| 163 |
+
Ax = np.zeros(n)
|
| 164 |
+
worst_cov = np.inf
|
| 165 |
+
for _ in range(steps):
|
| 166 |
+
g = grad_smin(pc.eta * Ax, Uc)
|
| 167 |
+
scores = (g @ lpc.A) * lpc.opt
|
| 168 |
+
j = exponential_mechanism(scores, pc.eps_prime, pc.sensitivity, rng)
|
| 169 |
+
val = float(g @ (lpc.opt * lpc.A[:, j]))
|
| 170 |
+
worst_cov = min(worst_cov, val)
|
| 171 |
+
Ax += lpc.opt * lpc.A[:, j]
|
| 172 |
+
|
| 173 |
+
return {
|
| 174 |
+
"packing_max_inner": worst_pack,
|
| 175 |
+
"packing_bound": 1.0 + alpha / 10.0,
|
| 176 |
+
"packing_lemma8_holds": bool(worst_pack <= 1.0 + alpha / 10.0 + 1e-9),
|
| 177 |
+
"covering_min_inner": worst_cov,
|
| 178 |
+
"covering_bound": 1.0 - alpha / 10.0,
|
| 179 |
+
"covering_lemma16_holds": bool(worst_cov >= 1.0 - alpha / 10.0 - 1e-9),
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
|
| 183 |
+
# ---------------------------------------------------------------- E. d^1.5 scaling
|
| 184 |
+
def data_independent_scaling(alpha=0.5, eps=1.0, delta=1e-6, beta=0.1, n=10**6):
|
| 185 |
+
"""Theorem 6.2: with pre/post-processing, s = O~(d^1.5 / (alpha^3.5 eps)).
|
| 186 |
+
|
| 187 |
+
The bound must not depend on OPT. We vary d at fixed OPT and vary OPT at fixed d.
|
| 188 |
+
"""
|
| 189 |
+
def L(p, d): # the polylog factor hidden by O~(.)
|
| 190 |
+
return np.log(d) + np.log(p.T / beta)
|
| 191 |
+
|
| 192 |
+
ds = np.unique(np.round(np.logspace(0.7, 3.5, 22)).astype(int))
|
| 193 |
+
P_d = [packing_params(1.0, 10.0, n, int(d), alpha, beta, eps, delta, True) for d in ds]
|
| 194 |
+
s_vs_d, L_d = [p.s for p in P_d], [L(p, d) for p, d in zip(P_d, ds)]
|
| 195 |
+
|
| 196 |
+
alphas = np.logspace(np.log10(0.02), np.log10(0.5), 18)
|
| 197 |
+
P_a = [packing_params(1.0, 10.0, n, 50, float(a), beta, eps, delta, True) for a in alphas]
|
| 198 |
+
s_vs_alpha, L_a = [p.s for p in P_a], [L(p, 50) for p in P_a]
|
| 199 |
+
|
| 200 |
+
opts = np.logspace(0, 4, 18)
|
| 201 |
+
P_o = [packing_params(1.0, float(o), n, 50, alpha, beta, eps, delta, True) for o in opts]
|
| 202 |
+
s_vs_opt, L_o = [p.s for p in P_o], [L(p, 50) for p in P_o]
|
| 203 |
+
|
| 204 |
+
# without preprocessing, s should scale as OPT^1.5 (Theorem 6.1)
|
| 205 |
+
P_on = [packing_params(1.0, float(o), n, 50, alpha, beta, eps, delta, False) for o in opts]
|
| 206 |
+
s_vs_opt_nopre, L_on = [p.s for p in P_on], [L(p, 50) for p in P_on]
|
| 207 |
+
|
| 208 |
+
return {
|
| 209 |
+
"d_exponent": fit_both(ds, s_vs_d, L_d),
|
| 210 |
+
"alpha_exponent": fit_both(alphas, s_vs_alpha, L_a),
|
| 211 |
+
"opt_exponent_with_preprocessing": fit_both(opts, s_vs_opt, L_o),
|
| 212 |
+
"opt_exponent_without_preprocessing": fit_both(opts, s_vs_opt_nopre, L_on),
|
| 213 |
+
"rows_d": [{"d": int(a), "s": float(b)} for a, b in zip(ds, s_vs_d)],
|
| 214 |
+
"rows_alpha": [{"alpha": float(a), "s": float(b)} for a, b in zip(alphas, s_vs_alpha)],
|
| 215 |
+
"rows_opt": [{"opt": float(a), "s_pre": float(b), "s_nopre": float(c)}
|
| 216 |
+
for a, b, c in zip(opts, s_vs_opt, s_vs_opt_nopre)],
|
| 217 |
+
}
|
| 218 |
+
|
| 219 |
+
|
| 220 |
+
def main() -> dict:
|
| 221 |
+
out: dict = {}
|
| 222 |
+
print("A. sensitivity (Lemma 8 core inequality) ...", flush=True)
|
| 223 |
+
out["sensitivity"] = sensitivity_check()
|
| 224 |
+
print("B. DP composition (Lemma 7) ...", flush=True)
|
| 225 |
+
out["composition"] = composition_check()
|
| 226 |
+
print("C. oracle lemmas 8 / 16 ...", flush=True)
|
| 227 |
+
out["oracle_lemmas"] = oracle_lemma_check()
|
| 228 |
+
print("D. end-to-end Algorithm 1 / 2 ...", flush=True)
|
| 229 |
+
out["packing_runs"] = [run_packing(seed=s, alpha=a)
|
| 230 |
+
for s in range(3) for a in (0.3, 0.5)]
|
| 231 |
+
out["covering_runs"] = [run_covering(seed=s, alpha=a)
|
| 232 |
+
for s in range(3) for a in (0.3, 0.5)]
|
| 233 |
+
print("E. data-independent scaling (Theorem 6.2) ...", flush=True)
|
| 234 |
+
out["scaling"] = data_independent_scaling()
|
| 235 |
+
return out
|
| 236 |
+
|
| 237 |
+
|
| 238 |
+
if __name__ == "__main__":
|
| 239 |
+
r = main()
|
| 240 |
+
with open("outputs/claim2_algs.json", "w") as f:
|
| 241 |
+
json.dump(r, f, indent=2)
|
| 242 |
+
|
| 243 |
+
sc = r["scaling"]
|
| 244 |
+
checks = {
|
| 245 |
+
"sensitivity <= 3H*OPT/s (Lemma 8)": r["sensitivity"]["holds"],
|
| 246 |
+
"eps' composes within (eps, delta) (Lemma 7)": r["composition"]["holds"],
|
| 247 |
+
"Lemma 8 oracle bound": r["oracle_lemmas"]["packing_lemma8_holds"],
|
| 248 |
+
"Lemma 16 oracle bound": r["oracle_lemmas"]["covering_lemma16_holds"],
|
| 249 |
+
"Alg 1 utility 1^T x >= (1-a)OPT": all(x["utility_ok"] for x in r["packing_runs"]),
|
| 250 |
+
"Alg 1 violations <= s": all(x["violations_le_s"] for x in r["packing_runs"]),
|
| 251 |
+
"Alg 2 utility 1^T x <= (1+a)OPT": all(x["utility_ok"] for x in r["covering_runs"]),
|
| 252 |
+
"Alg 2 violations <= s": all(x["violations_le_s"] for x in r["covering_runs"]),
|
| 253 |
+
"s ~ d^1.5 (Thm 6.2)": abs(sc["d_exponent"]["polylog_corrected"] - 1.5) < 0.02,
|
| 254 |
+
"s ~ alpha^-3.5 (Thm 6.2)": abs(sc["alpha_exponent"]["polylog_corrected"] + 3.5) < 0.02,
|
| 255 |
+
"s independent of OPT with preprocessing":
|
| 256 |
+
abs(sc["opt_exponent_with_preprocessing"]["polylog_corrected"]) < 0.02,
|
| 257 |
+
"s ~ OPT^1.5 without preprocessing (Thm 6.1)":
|
| 258 |
+
abs(sc["opt_exponent_without_preprocessing"]["polylog_corrected"] - 1.5) < 0.02,
|
| 259 |
+
}
|
| 260 |
+
print()
|
| 261 |
+
print(f"sensitivity observed/claimed max : {r['sensitivity']['max_observed_over_claimed']:.4f}")
|
| 262 |
+
print("exponents of s (raw | polylog-corrected | predicted)")
|
| 263 |
+
for key, pred in [("d_exponent", 1.5), ("alpha_exponent", -3.5),
|
| 264 |
+
("opt_exponent_with_preprocessing", 0.0),
|
| 265 |
+
("opt_exponent_without_preprocessing", 1.5)]:
|
| 266 |
+
print(f" {key:38s} {sc[key]['raw']:+.4f} | {sc[key]['polylog_corrected']:+.4f} | {pred:+.1f}")
|
| 267 |
+
print()
|
| 268 |
+
for k, v in checks.items():
|
| 269 |
+
print(f" [{'PASS' if v else 'FAIL'}] {k}")
|
| 270 |
+
sys.exit(0 if all(checks.values()) else 1)
|
| 271 |
+
|
| 272 |
+
````
|
| 273 |
+
|
| 274 |
+
|
| 275 |
+
````output
|
| 276 |
+
A. sensitivity (Lemma 8 core inequality) ...
|
| 277 |
+
B. DP composition (Lemma 7) ...
|
| 278 |
+
C. oracle lemmas 8 / 16 ...
|
| 279 |
+
D. end-to-end Algorithm 1 / 2 ...
|
| 280 |
+
E. data-independent scaling (Theorem 6.2) ...
|
| 281 |
+
|
| 282 |
+
sensitivity observed/claimed max : 0.0146
|
| 283 |
+
exponents of s (raw | polylog-corrected | predicted)
|
| 284 |
+
d_exponent +1.6004 | +1.5000 | +1.5
|
| 285 |
+
alpha_exponent -3.6297 | -3.5000 | -3.5
|
| 286 |
+
opt_exponent_with_preprocessing +0.0000 | +0.0000 | +0.0
|
| 287 |
+
opt_exponent_without_preprocessing +1.5569 | +1.5000 | +1.5
|
| 288 |
+
|
| 289 |
+
[PASS] sensitivity <= 3H*OPT/s (Lemma 8)
|
| 290 |
+
[PASS] eps' composes within (eps, delta) (Lemma 7)
|
| 291 |
+
[PASS] Lemma 8 oracle bound
|
| 292 |
+
[PASS] Lemma 16 oracle bound
|
| 293 |
+
[PASS] Alg 1 utility 1^T x >= (1-a)OPT
|
| 294 |
+
[PASS] Alg 1 violations <= s
|
| 295 |
+
[PASS] Alg 2 utility 1^T x <= (1+a)OPT
|
| 296 |
+
[PASS] Alg 2 violations <= s
|
| 297 |
+
[PASS] s ~ d^1.5 (Thm 6.2)
|
| 298 |
+
[PASS] s ~ alpha^-3.5 (Thm 6.2)
|
| 299 |
+
[PASS] s independent of OPT with preprocessing
|
| 300 |
+
[PASS] s ~ OPT^1.5 without preprocessing (Thm 6.1)
|
| 301 |
+
|
| 302 |
+
````
|
| 303 |
+
|
| 304 |
+
|
| 305 |
+
---
|
| 306 |
+
<!-- trackio-cell
|
| 307 |
+
{"type": "markdown", "id": "cell_7eacc6483a72", "created_at": "2026-07-17T08:19:09+00:00", "title": "Claim 2 verdict"}
|
| 308 |
+
-->
|
| 309 |
+
## Verdict: **reproduced**. All 12 checks pass; the exponents are exact.
|
| 310 |
+
|
| 311 |
+
Claim 2 (Theorem 1 / Theorem 6.2): with pre- and post-processing, `s = O~(d^1.5/(alpha^3.5 eps))` — depending only on the LP dimension `d`, **not** on `OPT` — improving Kaplan et al. (2024)'s `O~(d^9/eps)` and Ene et al. (2025)'s `O~(d^4/eps)` when an approximation factor `alpha` is tolerated.
|
| 312 |
+
|
| 313 |
+
### The exponents (the substance of the claim)
|
| 314 |
+
|
| 315 |
+
| quantity | raw fit | **polylog-corrected** | theorem |
|
| 316 |
+
|---|---|---|---|
|
| 317 |
+
| `s` vs `d` (with pre/post-processing) | +1.6004 | **+1.5000** | **+1.5** |
|
| 318 |
+
| `s` vs `alpha` | -3.6297 | **-3.5000** | **-3.5** |
|
| 319 |
+
| `s` vs `OPT` (with pre/post-processing) | +0.0000 | **+0.0000** | **0** (data-independent) |
|
| 320 |
+
| `s` vs `OPT` (without) | +1.5569 | **+1.5000** | **+1.5** (Thm 6.1) |
|
| 321 |
+
|
| 322 |
+
The polylog-corrected values are exact to 4 decimal places. The raw fits are visibly biased upward by the `(log d + log(T/beta))` factor `O~()` hides — reporting only the raw fit would have understated the agreement (and reporting it as a *failure* would have been wrong).
|
| 323 |
+
|
| 324 |
+
The third row is the crux of the data-independent claim and it is worth stating plainly: **turning pre-processing on makes the exponent of `OPT` fall from 1.5 to exactly 0**. The mechanism is the clip `A_ij <- min{A_ij, H}` with `H = 2d/(alpha·OPT)`, which makes `H·OPT = 2d/alpha` — the product that drives `s` — free of `OPT` by construction. This reproduces.
|
| 325 |
+
|
| 326 |
+
### The lemmas the privacy argument rests on
|
| 327 |
+
|
| 328 |
+
| Paper statement | What we measured | Result |
|
| 329 |
+
|---|---|---|
|
| 330 |
+
| **Lemma 8 sensitivity**: `\|Q(j,A) - Q(j,A')\| <= 3H·OPT/s` over neighbouring instances | max observed / claimed, 300 random neighbouring pairs | **0.0146** — holds with 68x margin |
|
| 331 |
+
| **Lemma 7**: `eps' = eps/(2 sqrt(T log 1/delta))` composes to `(eps, delta)`-DP over `T` rounds | strong composition, 36 `(eps, T, delta)` settings | **holds in all** |
|
| 332 |
+
| **Lemma 8**: `<grad smax^U(eta A x), A Delta_t> <= 1 + alpha/10` every iteration | max over 300 iterations | **holds** |
|
| 333 |
+
| **Lemma 16**: `<grad smin^U(eta A x), A Delta_t> >= 1 - alpha/10` | min over 300 iterations | **holds** |
|
| 334 |
+
|
| 335 |
+
The sensitivity result is the one that matters most — it is the inequality the whole privacy analysis is built on, and it is *not* tight (observed is 68x below the bound), which is consistent with the constants being conservative.
|
| 336 |
+
|
| 337 |
+
### End-to-end (Theorems 6 and 10)
|
| 338 |
+
|
| 339 |
+
Algorithm 1 satisfied `1^T x >= (1-alpha) OPT` and Algorithm 2 satisfied `1^T x <= (1+alpha) OPT` on every run (3 seeds x alpha in {0.3, 0.5}), and both stayed within their `s` budget.
|
| 340 |
+
|
| 341 |
+
**Honest caveat:** at these local scales `s >> n`, so 'violations <= s' is *vacuously* true and carries no information. The claim only acquires content at `n ~ 1e6`; that is what the GPU job on the Conclusion page is for. The utility half (`1^T x` vs `OPT`) is meaningful at every scale and does hold.
|
| 342 |
+
|
| 343 |
+
|
| 344 |
+
---
|
| 345 |
+
<!-- trackio-cell
|
| 346 |
+
{"type": "figure", "id": "cell_6ca7465c978f", "created_at": "2026-07-17T08:20:49+00:00", "title": "s scales as d^1.5 (data-independent bound)"}
|
| 347 |
+
-->
|
| 348 |
+
````html
|
| 349 |
+
<html>
|
| 350 |
+
<head><meta charset="utf-8" /></head>
|
| 351 |
+
<body>
|
| 352 |
+
<div style="height:430px; width:100%;"> <script>window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
|
| 353 |
+
<script charset="utf-8" src="https://cdn.plot.ly/plotly-3.7.0.min.js" integrity="sha256-jvTGqxNp8AGWEcvNLVuKr+8j5dGe9Yw51LQkmDH+IYA=" crossorigin="anonymous"></script> <div id="f85c05ce-cce0-44bc-89cb-a0d12ccec7cb" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("f85c05ce-cce0-44bc-89cb-a0d12ccec7cb")) { Plotly.newPlot( "f85c05ce-cce0-44bc-89cb-a0d12ccec7cb", [{"line":{"color":"#3b82f6","width":3},"name":"with pre\u002fpost-processing (Thm 6.2)","x":[5,7,9,13,17,23,32,43,58,79,108,147,200,271,369,501,681,926,1259,1711,2326,3162],"y":[36912320.22650394,64102276.21410177,96672114.1996676,176002060.37390402,272116453.274127,444047629.37753576,757086754.061539,1218830885.1534035,1972055493.3677976,3237816429.08668,5341964456.719146,8743567362.579014,14289001521.39374,23180881638.918102,37869381988.203224,61538050497.84409,100111632111.71373,162846819196.2297,264679171413.7877,429632156496.73724,697328562146.2605,1131169243154.5298],"type":"scatter"},{"line":{"color":"#94a3b8","dash":"dot","width":2},"name":"d\u003csup\u003e1.5\u003c\u002fsup\u003e reference","x":[5,7,9,13,17,23,32,43,58,79,108,147,200,271,369,501,681,926,1259,1711,2326,3162],"y":[36912320.22650394,61145344.80300931,89141533.8123995,154750252.67198053,231414048.59805745,364173292.2800333,597642268.8627448,930934277.8252705,1458338457.6958504,2318232421.163079,3705543975.064679,5884266590.033262,9338160450.980385,14728898679.209803,23402156944.360718,37023112537.22146,58672825935.05109,93032098720.28706,147487404694.30618,233663755580.42603,370365823290.9903,587028432614.8685],"type":"scatter"}], {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"type":"log","title":{"text":"d (LP dimension)"}},"yaxis":{"type":"log","title":{"text":"s"}},"font":{"size":13},"margin":{"l":70,"r":30,"t":60,"b":60},"legend":{"orientation":"h","yanchor":"bottom","y":1.02,"x":0},"title":{"text":"Claim 2: data-independent bound scales as d\u003csup\u003e1.5\u003c\u002fsup\u003e\u003cbr\u003e\u003csub\u003epolylog-corrected exponent 1.5000 (theory 1.5); independent of OPT (exponent 0.0000)\u003c\u002fsub\u003e"},"height":430}, {"responsive": true} ) }; </script> </div>
|
| 354 |
+
</body>
|
| 355 |
+
</html>
|
| 356 |
+
````
|
| 357 |
+
|
| 358 |
+
````raw
|
| 359 |
+
d,s
|
| 360 |
+
5,36912320.22650394
|
| 361 |
+
7,64102276.21410177
|
| 362 |
+
9,96672114.1996676
|
| 363 |
+
13,176002060.37390402
|
| 364 |
+
17,272116453.274127
|
| 365 |
+
23,444047629.37753576
|
| 366 |
+
32,757086754.061539
|
| 367 |
+
43,1218830885.1534035
|
| 368 |
+
58,1972055493.3677976
|
| 369 |
+
79,3237816429.08668
|
| 370 |
+
108,5341964456.719146
|
| 371 |
+
147,8743567362.579014
|
| 372 |
+
200,14289001521.39374
|
| 373 |
+
271,23180881638.918102
|
| 374 |
+
369,37869381988.203224
|
| 375 |
+
501,61538050497.84409
|
| 376 |
+
681,100111632111.71373
|
| 377 |
+
926,162846819196.2297
|
| 378 |
+
1259,264679171413.7877
|
| 379 |
+
1711,429632156496.73724
|
| 380 |
+
2326,697328562146.2605
|
| 381 |
+
3162,1131169243154.5298
|
| 382 |
+
|
| 383 |
+
````
|
| 384 |
+
|
| 385 |
+
|
| 386 |
+
---
|
| 387 |
+
<!-- trackio-cell
|
| 388 |
+
{"type": "figure", "id": "cell_20a7ab4c48dc", "created_at": "2026-07-17T08:20:50+00:00", "title": "Pre/post-processing removes the OPT dependence"}
|
| 389 |
+
-->
|
| 390 |
+
````html
|
| 391 |
+
<html>
|
| 392 |
+
<head><meta charset="utf-8" /></head>
|
| 393 |
+
<body>
|
| 394 |
+
<div style="height:430px; width:100%;"> <script>window.PlotlyConfig = {MathJaxConfig: 'local'};</script>
|
| 395 |
+
<script charset="utf-8" src="https://cdn.plot.ly/plotly-3.7.0.min.js" integrity="sha256-jvTGqxNp8AGWEcvNLVuKr+8j5dGe9Yw51LQkmDH+IYA=" crossorigin="anonymous"></script> <div id="5ec7e170-5934-43ea-8754-e3b70d2cbcbd" class="plotly-graph-div" style="height:100%; width:100%;"></div> <script> window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById("5ec7e170-5934-43ea-8754-e3b70d2cbcbd")) { Plotly.newPlot( "5ec7e170-5934-43ea-8754-e3b70d2cbcbd", [{"line":{"color":"#3b82f6","width":3},"name":"instance-dependent (Thm 6.1): ~OPT\u003csup\u003e1.5\u003c\u002fsup\u003e","x":[1.0,1.7190722018585745,2.955209235202887,5.0802180469130205,8.733261623828433,15.013107289081734,25.808615404180742,44.366873309786115,76.26985859023443,131.11339374215643,225.39339047347912,387.4675120456132,666.0846290809154,1145.0475699382812,1968.4194472866113,3383.8551534282333,5817.091329374358,10000.0],"y":[392288.8760560214,920062.1155485939,2155673.0086954813,5042131.856501529,11779600.817240719,27484947.300785545,64054367.28946883,149123423.2632838,346814174.43855,805816745.962966,1870627209.9283626,4338817415.577282,10055620099.466639,23287274416.137215,53891190257.67331,124629938897.78572,288036317505.7833,665282396440.1139],"type":"scatter"},{"line":{"color":"#10b981","width":3},"name":"data-independent (Thm 6.2): flat in OPT","x":[1.0,1.7190722018585745,2.955209235202887,5.0802180469130205,8.733261623828433,15.013107289081734,25.808615404180742,44.366873309786115,76.26985859023443,131.11339374215643,225.39339047347912,387.4675120456132,666.0846290809154,1145.0475699382812,1968.4194472866113,3383.8551534282333,5817.091329374358,10000.0],"y":[1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148663,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.614867,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667,1553558106.6148667],"type":"scatter"}], {"template":{"data":{"barpolar":[{"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"white","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"#C8D4E3","linecolor":"#C8D4E3","minorgridcolor":"#C8D4E3","startlinecolor":"#2a3f5f"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scattermap":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermap"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"geo":{"bgcolor":"white","lakecolor":"white","landcolor":"white","showlakes":true,"showland":true,"subunitcolor":"#C8D4E3"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"light"},"paper_bgcolor":"white","plot_bgcolor":"white","polar":{"angularaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""},"bgcolor":"white","radialaxis":{"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"yaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"},"zaxis":{"backgroundcolor":"white","gridcolor":"#DFE8F3","gridwidth":2,"linecolor":"#EBF0F8","showbackground":true,"ticks":"","zerolinecolor":"#EBF0F8"}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"ternary":{"aaxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"baxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""},"bgcolor":"white","caxis":{"gridcolor":"#DFE8F3","linecolor":"#A2B1C6","ticks":""}},"title":{"x":0.05},"xaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#EBF0F8","linecolor":"#EBF0F8","ticks":"","title":{"standoff":15},"zerolinecolor":"#EBF0F8","zerolinewidth":2}}},"xaxis":{"type":"log","title":{"text":"OPT"}},"yaxis":{"type":"log","title":{"text":"s"}},"font":{"size":13},"margin":{"l":70,"r":30,"t":60,"b":60},"legend":{"orientation":"h","yanchor":"bottom","y":1.02,"x":0},"title":{"text":"Claim 2: pre\u002fpost-processing removes the OPT dependence"},"height":430}, {"responsive": true} ) }; </script> </div>
|
| 396 |
+
</body>
|
| 397 |
+
</html>
|
| 398 |
+
````
|
| 399 |
+
|
| 400 |
+
````raw
|
| 401 |
+
opt,s_pre,s_nopre
|
| 402 |
+
1.0,1553558106.6148667,392288.8760560214
|
| 403 |
+
1.7190722018585745,1553558106.6148667,920062.1155485939
|
| 404 |
+
2.955209235202887,1553558106.6148667,2155673.0086954813
|
| 405 |
+
5.0802180469130205,1553558106.6148667,5042131.856501529
|
| 406 |
+
8.733261623828433,1553558106.6148667,11779600.817240719
|
| 407 |
+
15.013107289081734,1553558106.6148663,27484947.300785545
|
| 408 |
+
25.808615404180742,1553558106.6148667,64054367.28946883
|
| 409 |
+
44.366873309786115,1553558106.6148667,149123423.2632838
|
| 410 |
+
76.26985859023443,1553558106.6148667,346814174.43855
|
| 411 |
+
131.11339374215643,1553558106.614867,805816745.962966
|
| 412 |
+
225.39339047347912,1553558106.6148667,1870627209.9283626
|
| 413 |
+
387.4675120456132,1553558106.6148667,4338817415.577282
|
| 414 |
+
666.0846290809154,1553558106.6148667,10055620099.466639
|
| 415 |
+
1145.0475699382812,1553558106.6148667,23287274416.137215
|
| 416 |
+
1968.4194472866113,1553558106.6148667,53891190257.67331
|
| 417 |
+
3383.8551534282333,1553558106.6148667,124629938897.78572
|
| 418 |
+
5817.091329374358,1553558106.6148667,288036317505.7833
|
| 419 |
+
10000.0,1553558106.6148667,665282396440.1139
|
| 420 |
+
|
| 421 |
+
````
|
| 422 |
+
|
| 423 |
+
|
| 424 |
+
---
|
| 425 |
+
<!-- trackio-cell
|
| 426 |
+
{"type": "markdown", "id": "cell_c96b1add9d44", "created_at": "2026-07-17T08:50:53+00:00", "title": "Correction: what the utility check does and does not show"}
|
| 427 |
+
-->
|
| 428 |
+
## Correction / precision on the end-to-end runs
|
| 429 |
+
|
| 430 |
+
Re-reading our own output caught something a reader should not have to: **the objective half of Theorems 6 and 10 is satisfied *by construction*, not empirically.** Every run reports `1^T x / OPT = 1.0000` **exactly**, because each update is `Delta_t = 1_j · OPT`, so
|
| 431 |
+
|
| 432 |
+
```
|
| 433 |
+
1^T x_bar = (1/T) sum_t 1^T Delta_t = (1/T) · T · OPT = OPT identically.
|
| 434 |
+
```
|
| 435 |
+
|
| 436 |
+
This is the paper's own argument (Lemma 9: *'since `Delta_t = 1_j OPT` for some coordinate `j`, we have `1^T Delta_t = OPT`'*), so the algorithm cannot fail it and our 'utility_ok' check was never at risk. It is a correct check, but it carries **no evidence**. We are flagging it rather than letting a green PASS imply more than it does.
|
| 437 |
+
|
| 438 |
+
**The half that is genuinely at risk is the constraint violation count**, and there the runs are informative. With every run now at its full theoretical `T` (no iteration cap — the earlier covering runs were capped at 4000 vs a required 4862, now raised):
|
| 439 |
+
|
| 440 |
+
| | violated / 300 constraints | rate |
|
| 441 |
+
|---|---|---|
|
| 442 |
+
| **Algorithm 1** (packing), 6 runs | 0, 0, 0, 0, 6, 0 | **0–2%** |
|
| 443 |
+
| **Algorithm 2** (covering), 6 runs | 31, 14, 45, 25, 43, 23 | **4.7–15%** |
|
| 444 |
+
|
| 445 |
+
The bound `s` for these runs is `~3e5–9e5` against `n = 300` — vacuous by three orders of magnitude. So the honest reading is: **the algorithms violate few constraints in practice (0–15%), far below their own bound, but the theorem is not what certifies that at this scale** — it is asserting nothing here. The bound only starts to constrain at `n ~ 1e6` (see Conclusion).
|
| 446 |
+
|
| 447 |
+
Note also that Algorithm 2's violation rate is consistently ~10x Algorithm 1's, which tracks the constant in its `s`: Algorithm 2 uses `s = 120·H·OPT(...)/(alpha eps')` against Algorithm 1's `60·H·OPT(...)`, and a `40d/(alpha·OPT)` clip against `2d/(alpha·OPT)` — the covering side is uniformly looser in the paper's own accounting.
|
pages/claim-3-mixed-packing-covering-bounds-theorem-2/page.md
ADDED
|
@@ -0,0 +1,356 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claim 3: mixed packing-covering bounds (Theorem 2)
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "code", "id": "cell_ca7ae82d00ca", "created_at": "2026-07-17T08:19:22+00:00", "title": "Run: uv exp_claim3_mixed.py (exit 0)", "command": ["uv", "run", "python", "exp_claim3_mixed.py"], "exit_code": 0, "duration_s": 5.022}
|
| 7 |
+
-->
|
| 8 |
+
````bash
|
| 9 |
+
$ uv run python exp_claim3_mixed.py
|
| 10 |
+
````
|
| 11 |
+
|
| 12 |
+
exit 0 · 5.0s
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
````python title=exp_claim3_mixed.py
|
| 16 |
+
"""Claims 3 and 5: mixed packing-covering (Section 5, Algorithms 3 and 4, Theorem 11).
|
| 17 |
+
|
| 18 |
+
Checks:
|
| 19 |
+
A. Lemma 20: the ratio score
|
| 20 |
+
<grad smax^U(Px), P 1_j> / <grad smin^U(Cx), C 1_j>
|
| 21 |
+
has sensitivity <= 3 S R V^2 / (s alpha^2) under a single-constraint change --
|
| 22 |
+
in BOTH cases of the proof (a covering constraint changes; a packing constraint
|
| 23 |
+
changes). This is the inequality that makes the mixed case work, and it is the
|
| 24 |
+
reason the line-3 perturbation C_ij <- C_ij + alpha/V is needed (it lower-bounds
|
| 25 |
+
C_min, which otherwise appears in the denominator).
|
| 26 |
+
B. Algorithm 3 end-to-end: Px <= 1+alpha and Cx >= 1-alpha except <= s constraints.
|
| 27 |
+
C. Algorithm 4 end-to-end (data-independent variant, with MaxEstimator preprocessing).
|
| 28 |
+
D. Theorem 11 scaling: s_3 ~ P_max C_max sqrt(P_max+C_max) V^2.5 / (alpha^4.5 eps)
|
| 29 |
+
and s_4 ~ d^3 / (alpha^6 eps).
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
from __future__ import annotations
|
| 33 |
+
|
| 34 |
+
import json
|
| 35 |
+
import sys
|
| 36 |
+
|
| 37 |
+
import numpy as np
|
| 38 |
+
|
| 39 |
+
from ppl.algorithms import mixed_algorithm3, mixed_algorithm4, mixed_params
|
| 40 |
+
from ppl.fitting import fit_both
|
| 41 |
+
from ppl.instances import random_mixed
|
| 42 |
+
from ppl.smax import grad_smax, grad_smin
|
| 43 |
+
|
| 44 |
+
|
| 45 |
+
def ratio_sensitivity_check(trials=200, n_p=40, n_c=40, d=5, alpha=0.5,
|
| 46 |
+
eps=1.0, delta=1e-6, beta=0.1, seed=0):
|
| 47 |
+
"""Lemma 20, both cases."""
|
| 48 |
+
rng = np.random.default_rng(seed)
|
| 49 |
+
worst = {"packing_change": 0.0, "covering_change": 0.0}
|
| 50 |
+
for _ in range(trials):
|
| 51 |
+
lp = random_mixed(n_p, n_c, d, rng, a_max=1.0)
|
| 52 |
+
P, C_raw, V = lp.P, lp.C, lp.V
|
| 53 |
+
S, R = float(P.max()), float(C_raw.max())
|
| 54 |
+
p = mixed_params(S, R, V, n_p + n_c, d, alpha, beta, eps, delta)
|
| 55 |
+
C = C_raw + alpha / V # line 3 perturbation
|
| 56 |
+
U_p = max(p.U, 1.0 / n_p)
|
| 57 |
+
U_c = max(p.U, 1.0 / n_c)
|
| 58 |
+
claimed = 3.0 * S * R * V**2 / ((1.0 / max(p.U, 1.0 / max(n_p, n_c))) * alpha**2)
|
| 59 |
+
|
| 60 |
+
x = rng.uniform(0, V / d, size=d)
|
| 61 |
+
|
| 62 |
+
def ratio(Pm, Cm):
|
| 63 |
+
gp = grad_smax(Pm @ x, U_p)
|
| 64 |
+
gc = grad_smin(Cm @ x, U_c)
|
| 65 |
+
return (gp @ Pm) / np.maximum(gc @ Cm, 1e-300)
|
| 66 |
+
|
| 67 |
+
base = ratio(P, C)
|
| 68 |
+
|
| 69 |
+
# Case 2: a packing constraint changes
|
| 70 |
+
P2 = P.copy()
|
| 71 |
+
P2[rng.integers(n_p)] = rng.uniform(0, S, size=d)
|
| 72 |
+
worst["packing_change"] = max(
|
| 73 |
+
worst["packing_change"], float(np.abs(ratio(P2, C) - base).max()) / claimed
|
| 74 |
+
)
|
| 75 |
+
|
| 76 |
+
# Case 1: a covering constraint changes (perturbation applied to the new row too)
|
| 77 |
+
C2 = C_raw.copy()
|
| 78 |
+
C2[rng.integers(n_c)] = rng.uniform(0, R, size=d)
|
| 79 |
+
worst["covering_change"] = max(
|
| 80 |
+
worst["covering_change"], float(np.abs(ratio(P, C2 + alpha / V) - base).max()) / claimed
|
| 81 |
+
)
|
| 82 |
+
return {
|
| 83 |
+
"max_observed_over_claimed_packing_change": worst["packing_change"],
|
| 84 |
+
"max_observed_over_claimed_covering_change": worst["covering_change"],
|
| 85 |
+
"holds": bool(max(worst.values()) <= 1.0),
|
| 86 |
+
"n_trials": trials,
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
def run_alg3(n_p=60, n_c=60, d=5, alpha=0.5, eps=1.0, delta=1e-6, beta=0.1,
|
| 91 |
+
seed=0, cap_iters=3000):
|
| 92 |
+
rng = np.random.default_rng(seed)
|
| 93 |
+
lp = random_mixed(n_p, n_c, d, rng, a_max=1.0)
|
| 94 |
+
p = mixed_params(lp.p_max, lp.c_max, lp.V, n_p + n_c, d, alpha, beta, eps, delta)
|
| 95 |
+
r = mixed_algorithm3(lp.P, lp.C, lp.V, alpha, eps, delta, beta, rng,
|
| 96 |
+
max_iters=cap_iters)
|
| 97 |
+
n_viol_p = int((lp.P @ r.x > 1.0 + alpha).sum())
|
| 98 |
+
n_viol_c = int((lp.C @ r.x < 1.0 - alpha).sum())
|
| 99 |
+
return {
|
| 100 |
+
"n_p": n_p, "n_c": n_c, "d": d, "alpha": alpha, "V": lp.V,
|
| 101 |
+
"P_max": lp.p_max, "C_max": lp.c_max,
|
| 102 |
+
"T_theory": p.T, "T_run": min(p.T, cap_iters), "iters_capped": p.T > cap_iters,
|
| 103 |
+
"s_bound": p.s, "s_bound_vacuous": bool(p.s >= n_p + n_c),
|
| 104 |
+
"violations": r.violations,
|
| 105 |
+
"violations_packing": n_viol_p, "violations_covering": n_viol_c,
|
| 106 |
+
"violations_le_s": bool(r.violations <= p.s),
|
| 107 |
+
"max_packing_residual": float((lp.P @ r.x).max()),
|
| 108 |
+
"min_covering_residual": float((lp.C @ r.x).min()),
|
| 109 |
+
}
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
def run_alg4(n_p=60, n_c=60, d=5, alpha=0.5, eps=1.0, delta=1e-6, beta=0.1,
|
| 113 |
+
seed=0, cap_iters=3000):
|
| 114 |
+
rng = np.random.default_rng(seed)
|
| 115 |
+
lp = random_mixed(n_p, n_c, d, rng, a_max=1.0)
|
| 116 |
+
m, M = 0.05, 1.0 # the known range [m, M] for column maxima
|
| 117 |
+
T_theory = int(np.ceil(np.log(n_p + n_c) * d**2 / alpha**4))
|
| 118 |
+
s = d**3 * (np.log(d) + np.log(T_theory / beta)) * np.sqrt(np.log(1.0 / delta) * np.log(n_p + n_c)) / (alpha**6 * eps)
|
| 119 |
+
r = mixed_algorithm4(lp.P, lp.C, m, M, alpha, eps, delta, beta, rng,
|
| 120 |
+
max_iters=cap_iters)
|
| 121 |
+
return {
|
| 122 |
+
"n_p": n_p, "n_c": n_c, "d": d, "alpha": alpha,
|
| 123 |
+
"T_theory": T_theory, "T_run": min(T_theory, cap_iters),
|
| 124 |
+
"s_bound": s, "s_bound_vacuous": bool(s >= n_p + n_c),
|
| 125 |
+
"n_filtered_by_maxestimator": r.history[0]["n_filtered"],
|
| 126 |
+
"violations": r.violations,
|
| 127 |
+
"violations_le_s": bool(r.violations <= s),
|
| 128 |
+
"max_packing_residual": float((lp.P @ r.x).max()),
|
| 129 |
+
"min_covering_residual": float((lp.C @ r.x).min()),
|
| 130 |
+
}
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
def alg3_mechanism_check(n_p=20, n_c=20, d=3, alpha=0.5, eps=1.0, delta=1e-6,
|
| 134 |
+
beta=0.1, seed=0):
|
| 135 |
+
"""Is the Algorithm-3 MWU itself correct, run to its FULL iteration count?
|
| 136 |
+
|
| 137 |
+
The end-to-end runs above cap T far below the theoretical value and their bound s is
|
| 138 |
+
vacuous, so they cannot distinguish "the mechanism is wrong" from "the bound does not
|
| 139 |
+
bite at this scale". Here we run a small instance to the full T = Theta((S+R)V log n/alpha^3)
|
| 140 |
+
and check the actual engine of Lemma 21:
|
| 141 |
+
|
| 142 |
+
smax^U(P x_T) / smin^U(C x_T) <= 1 + alpha
|
| 143 |
+
|
| 144 |
+
which is what licenses "there is a scale k with k*x_T nearly feasible". We then
|
| 145 |
+
compare the violations at the BEST scale (chosen non-privately) against those at the
|
| 146 |
+
scale the private exponential mechanism actually returns -- isolating the MWU from
|
| 147 |
+
the private scale-selection step.
|
| 148 |
+
"""
|
| 149 |
+
rng = np.random.default_rng(seed)
|
| 150 |
+
lp = random_mixed(n_p, n_c, d, rng, a_max=1.0)
|
| 151 |
+
P, C_init, V = lp.P, lp.C, lp.V
|
| 152 |
+
S, R = float(P.max()), float(C_init.max())
|
| 153 |
+
p = mixed_params(S, R, V, n_p + n_c, d, alpha, beta, eps, delta)
|
| 154 |
+
C = C_init + alpha / V
|
| 155 |
+
|
| 156 |
+
from ppl.algorithms import _clamp_U, _count_mixed_violations
|
| 157 |
+
from ppl.mechanism import exponential_mechanism
|
| 158 |
+
from ppl.smax import smax, smin
|
| 159 |
+
|
| 160 |
+
U_p, U_c = _clamp_U(p.U, n_p), _clamp_U(p.U, n_c)
|
| 161 |
+
x = np.zeros(d)
|
| 162 |
+
for _ in range(p.T): # FULL theoretical iteration count, no cap
|
| 163 |
+
gp = grad_smax(P @ x, U_p)
|
| 164 |
+
gc = grad_smin(C @ x, U_c)
|
| 165 |
+
scores = -(gp @ P) / np.maximum(gc @ C, 1e-300)
|
| 166 |
+
j = exponential_mechanism(scores, p.eps_prime, p.sensitivity, rng)
|
| 167 |
+
x[j] += p.step
|
| 168 |
+
|
| 169 |
+
ratio = smax(P @ x, U_p) / smin(C @ x, U_c)
|
| 170 |
+
|
| 171 |
+
# the scale search of line 9
|
| 172 |
+
m, M = float(min(P.min(), C_init.min())), float(max(S, R))
|
| 173 |
+
ks, k = [], m / (alpha * p.T * M)
|
| 174 |
+
while k <= 60.0 * M / (alpha * m):
|
| 175 |
+
ks.append(k)
|
| 176 |
+
k *= 1.0 + alpha
|
| 177 |
+
ks = np.array(ks)
|
| 178 |
+
counts = np.array([_count_mixed_violations(P, C_init, kk * x, alpha) for kk in ks])
|
| 179 |
+
best = int(counts.argmin())
|
| 180 |
+
j_priv = exponential_mechanism(-counts.astype(float), p.eps_prime, 1.0, rng)
|
| 181 |
+
|
| 182 |
+
return {
|
| 183 |
+
"T": p.T, "n_p": n_p, "n_c": n_c, "d": d, "alpha": alpha, "V": V,
|
| 184 |
+
"smax_over_smin": float(ratio),
|
| 185 |
+
"ratio_bound": 1.0 + alpha,
|
| 186 |
+
"lemma21_ratio_holds": bool(ratio <= 1.0 + alpha + 1e-9),
|
| 187 |
+
"violations_at_best_scale": int(counts[best]),
|
| 188 |
+
"violations_at_private_scale": int(counts[j_priv]),
|
| 189 |
+
"n_constraints": n_p + n_c,
|
| 190 |
+
"n_scale_candidates": len(ks),
|
| 191 |
+
"eps_prime": p.eps_prime,
|
| 192 |
+
"s_bound": p.s,
|
| 193 |
+
"s_vacuous": bool(p.s >= n_p + n_c),
|
| 194 |
+
}
|
| 195 |
+
|
| 196 |
+
|
| 197 |
+
def theorem11_scaling(alpha=0.5, eps=1.0, delta=1e-6, beta=0.1, n=10**6, d=20):
|
| 198 |
+
"""Thm 11.1: s ~ P_max C_max sqrt(P_max+C_max) V^2.5 / (alpha^4.5 eps).
|
| 199 |
+
Thm 11.2: s ~ d^3 / (alpha^6 eps)."""
|
| 200 |
+
|
| 201 |
+
def L3(p): # polylog hidden by O~(.)
|
| 202 |
+
return np.log(d) + np.log(p.T / beta)
|
| 203 |
+
|
| 204 |
+
# --- Algorithm 3: exponent in V, at fixed S=R=1
|
| 205 |
+
Vs = np.logspace(0, 3, 20)
|
| 206 |
+
P_V = [mixed_params(1.0, 1.0, float(v), n, d, alpha, beta, eps, delta) for v in Vs]
|
| 207 |
+
# exponent in alpha
|
| 208 |
+
alphas = np.logspace(np.log10(0.02), np.log10(0.5), 18)
|
| 209 |
+
P_a = [mixed_params(1.0, 1.0, 10.0, n, d, float(a), beta, eps, delta) for a in alphas]
|
| 210 |
+
# exponent in S=R=A (P_max=C_max=A): predicted P_max*C_max*sqrt(P_max+C_max) ~ A^2.5
|
| 211 |
+
As = np.logspace(0, 2, 18)
|
| 212 |
+
P_A = [mixed_params(float(a), float(a), 10.0, n, d, alpha, beta, eps, delta) for a in As]
|
| 213 |
+
|
| 214 |
+
# --- Algorithm 4: exponent in d and alpha
|
| 215 |
+
ds = np.unique(np.round(np.logspace(0.7, 3, 20)).astype(int))
|
| 216 |
+
|
| 217 |
+
def s4(dd, aa):
|
| 218 |
+
T = np.ceil(np.log(n) * dd**2 / aa**4)
|
| 219 |
+
L = np.log(dd) + np.log(T / beta)
|
| 220 |
+
return (dd**3 * L * np.sqrt(np.log(1.0 / delta) * np.log(n)) / (aa**6 * eps), L)
|
| 221 |
+
|
| 222 |
+
s4_d = [s4(int(x), alpha) for x in ds]
|
| 223 |
+
s4_a = [s4(50, float(x)) for x in alphas]
|
| 224 |
+
|
| 225 |
+
return {
|
| 226 |
+
"alg3_V_exponent": fit_both(Vs, [p.s for p in P_V], [L3(p) for p in P_V]),
|
| 227 |
+
"alg3_alpha_exponent": fit_both(alphas, [p.s for p in P_a], [L3(p) for p in P_a]),
|
| 228 |
+
"alg3_Amax_exponent": fit_both(As, [p.s for p in P_A], [L3(p) for p in P_A]),
|
| 229 |
+
"alg4_d_exponent": fit_both(ds, [v[0] for v in s4_d], [v[1] for v in s4_d]),
|
| 230 |
+
"alg4_alpha_exponent": fit_both(alphas, [v[0] for v in s4_a], [v[1] for v in s4_a]),
|
| 231 |
+
"rows_V": [{"V": float(a), "s": float(p.s)} for a, p in zip(Vs, P_V)],
|
| 232 |
+
"rows_d4": [{"d": int(a), "s": float(b[0])} for a, b in zip(ds, s4_d)],
|
| 233 |
+
}
|
| 234 |
+
|
| 235 |
+
|
| 236 |
+
def main() -> dict:
|
| 237 |
+
out: dict = {}
|
| 238 |
+
print("A. Lemma 20 ratio-score sensitivity ...", flush=True)
|
| 239 |
+
out["ratio_sensitivity"] = ratio_sensitivity_check()
|
| 240 |
+
print("B. Algorithm 3 end-to-end ...", flush=True)
|
| 241 |
+
out["alg3_runs"] = [run_alg3(seed=s, alpha=a) for s in range(3) for a in (0.3, 0.5)]
|
| 242 |
+
print("C. Algorithm 4 end-to-end ...", flush=True)
|
| 243 |
+
out["alg4_runs"] = [run_alg4(seed=s, alpha=a) for s in range(3) for a in (0.3, 0.5)]
|
| 244 |
+
print("D. Theorem 11 scaling ...", flush=True)
|
| 245 |
+
out["scaling"] = theorem11_scaling()
|
| 246 |
+
print("E. Algorithm 3 mechanism at full T ...", flush=True)
|
| 247 |
+
out["alg3_mechanism"] = [alg3_mechanism_check(seed=s) for s in range(3)]
|
| 248 |
+
return out
|
| 249 |
+
|
| 250 |
+
|
| 251 |
+
if __name__ == "__main__":
|
| 252 |
+
r = main()
|
| 253 |
+
with open("outputs/claim3_mixed.json", "w") as f:
|
| 254 |
+
json.dump(r, f, indent=2)
|
| 255 |
+
|
| 256 |
+
sc = r["scaling"]
|
| 257 |
+
checks = {
|
| 258 |
+
"Lemma 20 ratio sensitivity": r["ratio_sensitivity"]["holds"],
|
| 259 |
+
"Alg 3 violations <= s": all(x["violations_le_s"] for x in r["alg3_runs"]),
|
| 260 |
+
"Alg 4 violations <= s": all(x["violations_le_s"] for x in r["alg4_runs"]),
|
| 261 |
+
"s3 ~ V^2.5 (Thm 11.1)": abs(sc["alg3_V_exponent"]["polylog_corrected"] - 2.5) < 0.02,
|
| 262 |
+
"s3 ~ alpha^-4.5 (Thm 11.1)": abs(sc["alg3_alpha_exponent"]["polylog_corrected"] + 4.5) < 0.02,
|
| 263 |
+
"s3 ~ Amax^2.5 (Thm 11.1)": abs(sc["alg3_Amax_exponent"]["polylog_corrected"] - 2.5) < 0.02,
|
| 264 |
+
"s4 ~ d^3 (Thm 11.2)": abs(sc["alg4_d_exponent"]["polylog_corrected"] - 3.0) < 0.02,
|
| 265 |
+
"s4 ~ alpha^-6 (Thm 11.2)": abs(sc["alg4_alpha_exponent"]["polylog_corrected"] + 6.0) < 0.02,
|
| 266 |
+
"Alg 3 MWU ratio smax/smin <= 1+alpha at full T (Lemma 21)":
|
| 267 |
+
all(x["lemma21_ratio_holds"] for x in r["alg3_mechanism"]),
|
| 268 |
+
}
|
| 269 |
+
print()
|
| 270 |
+
print("Algorithm 3 at FULL T (small instances):")
|
| 271 |
+
for x in r["alg3_mechanism"]:
|
| 272 |
+
print(f" T={x['T']:>7} smax/smin={x['smax_over_smin']:.4f} (bound {x['ratio_bound']}) "
|
| 273 |
+
f"-> {x['lemma21_ratio_holds']}; violations: best scale "
|
| 274 |
+
f"{x['violations_at_best_scale']}/{x['n_constraints']}, "
|
| 275 |
+
f"private scale {x['violations_at_private_scale']}/{x['n_constraints']} "
|
| 276 |
+
f"(eps'={x['eps_prime']:.2e} over {x['n_scale_candidates']} candidates)")
|
| 277 |
+
print("exponents of s (raw | polylog-corrected | predicted)")
|
| 278 |
+
for key, pred in [("alg3_V_exponent", 2.5), ("alg3_alpha_exponent", -4.5),
|
| 279 |
+
("alg3_Amax_exponent", 2.5), ("alg4_d_exponent", 3.0),
|
| 280 |
+
("alg4_alpha_exponent", -6.0)]:
|
| 281 |
+
print(f" {key:24s} {sc[key]['raw']:+.4f} | {sc[key]['polylog_corrected']:+.4f} | {pred:+.1f}")
|
| 282 |
+
print()
|
| 283 |
+
for k, v in checks.items():
|
| 284 |
+
print(f" [{'PASS' if v else 'FAIL'}] {k}")
|
| 285 |
+
sys.exit(0 if all(checks.values()) else 1)
|
| 286 |
+
|
| 287 |
+
````
|
| 288 |
+
|
| 289 |
+
|
| 290 |
+
````output
|
| 291 |
+
A. Lemma 20 ratio-score sensitivity ...
|
| 292 |
+
B. Algorithm 3 end-to-end ...
|
| 293 |
+
C. Algorithm 4 end-to-end ...
|
| 294 |
+
D. Theorem 11 scaling ...
|
| 295 |
+
E. Algorithm 3 mechanism at full T ...
|
| 296 |
+
|
| 297 |
+
Algorithm 3 at FULL T (small instances):
|
| 298 |
+
T= 48524 smax/smin=0.2705 (bound 1.5) -> True; violations: best scale 0/40, private scale 20/40 (eps'=6.11e-04 over 57 candidates)
|
| 299 |
+
T= 46943 smax/smin=0.3422 (bound 1.5) -> True; violations: best scale 0/40, private scale 20/40 (eps'=6.21e-04 over 55 candidates)
|
| 300 |
+
T= 51147 smax/smin=0.3213 (bound 1.5) -> True; violations: best scale 0/40, private scale 20/40 (eps'=5.95e-04 over 54 candidates)
|
| 301 |
+
exponents of s (raw | polylog-corrected | predicted)
|
| 302 |
+
alg3_V_exponent +2.5495 | +2.5000 | +2.5
|
| 303 |
+
alg3_alpha_exponent -4.6261 | -4.5000 | -4.5
|
| 304 |
+
alg3_Amax_exponent +2.5467 | +2.5000 | +2.5
|
| 305 |
+
alg4_d_exponent +3.1514 | +3.0000 | +3.0
|
| 306 |
+
alg4_alpha_exponent -6.1568 | -6.0000 | -6.0
|
| 307 |
+
|
| 308 |
+
[PASS] Lemma 20 ratio sensitivity
|
| 309 |
+
[PASS] Alg 3 violations <= s
|
| 310 |
+
[PASS] Alg 4 violations <= s
|
| 311 |
+
[PASS] s3 ~ V^2.5 (Thm 11.1)
|
| 312 |
+
[PASS] s3 ~ alpha^-4.5 (Thm 11.1)
|
| 313 |
+
[PASS] s3 ~ Amax^2.5 (Thm 11.1)
|
| 314 |
+
[PASS] s4 ~ d^3 (Thm 11.2)
|
| 315 |
+
[PASS] s4 ~ alpha^-6 (Thm 11.2)
|
| 316 |
+
[PASS] Alg 3 MWU ratio smax/smin <= 1+alpha at full T (Lemma 21)
|
| 317 |
+
|
| 318 |
+
````
|
| 319 |
+
|
| 320 |
+
|
| 321 |
+
---
|
| 322 |
+
<!-- trackio-cell
|
| 323 |
+
{"type": "markdown", "id": "cell_ded7e59c4f05", "created_at": "2026-07-17T08:19:43+00:00", "title": "Claim 3 verdict"}
|
| 324 |
+
-->
|
| 325 |
+
## Verdict: **reproduced at the level of the bounds and the sensitivity lemma.** All five exponents of Theorem 2 are exact.
|
| 326 |
+
|
| 327 |
+
Claim 3 (Theorem 2 / Theorem 11): mixed packing-covering (`Px <= 1, Cx >= 1`) admits an instance-dependent bound `s = O~(P_max C_max sqrt(P_max+C_max) V^2.5/(alpha^4.5 eps))` and a data-independent bound `s = O~(d^3/(alpha^6 eps))`.
|
| 328 |
+
|
| 329 |
+
### The exponents
|
| 330 |
+
|
| 331 |
+
| quantity | raw fit | **polylog-corrected** | theorem |
|
| 332 |
+
|---|---|---|---|
|
| 333 |
+
| `s_3` vs `V` | +2.5495 | **+2.5000** | **+2.5** |
|
| 334 |
+
| `s_3` vs `alpha` | -4.6261 | **-4.5000** | **-4.5** |
|
| 335 |
+
| `s_3` vs `P_max = C_max` | +2.5467 | **+2.5000** | **+2.5** |
|
| 336 |
+
| `s_4` vs `d` | +3.1514 | **+3.0000** | **+3.0** |
|
| 337 |
+
| `s_4` vs `alpha` | -6.1568 | **-6.0000** | **-6.0** |
|
| 338 |
+
|
| 339 |
+
The third row deserves a note: Theorem 2's `P_max·C_max·sqrt(P_max+C_max)` prefactor predicts exponent `1 + 1 + 0.5 = 2.5` when `P_max = C_max` are varied together, and that is what we measure — a non-trivial consistency check on the *shape* of the prefactor, not just one variable.
|
| 340 |
+
|
| 341 |
+
### Lemma 20 (the sensitivity that makes the mixed case work)
|
| 342 |
+
|
| 343 |
+
Algorithm 3 scores coordinates by a **ratio** `<grad smax^U(Px), P1_j> / <grad smin^U(Cx), C1_j>`, whose sensitivity Lemma 20 bounds by `3 S R V^2/(s alpha^2)` in two separate cases. Measured over 200 random neighbouring instances:
|
| 344 |
+
|
| 345 |
+
- a **packing** constraint changes: max observed/claimed = **0.023**
|
| 346 |
+
- a **covering** constraint changes: max observed/claimed = **0.023**
|
| 347 |
+
|
| 348 |
+
Both hold. This also confirms *why* line 3 of Algorithm 3 perturbs `C_ij <- C_ij + alpha/V`: `C_min` sits in the denominator of that ratio, and without the perturbation the sensitivity is unbounded as `C_min -> 0`.
|
| 349 |
+
|
| 350 |
+
### Instance generation (a trap worth recording)
|
| 351 |
+
|
| 352 |
+
Sampling `P` and `C` independently at the same scale essentially **never** yields a feasible mixed instance: for `x = t·1` the packing rows force `t <~ 1/max_i sum_j P_ij` while the covering rows need `t >~ 1/min_i sum_j C_ij`, and with iid entries the former is smaller. Our first generator raised `could not sample a feasible mixed instance` after 200 tries. We now pick a witness `x*` first and rescale each row around it (`P_i <- P_i/max(1, P_i x*)`, `C_i <- C_i·max(1, 1/(C_i x*))`), making `x*` feasible by construction.
|
| 353 |
+
|
| 354 |
+
### What is *not* established here
|
| 355 |
+
|
| 356 |
+
The end-to-end runs of Algorithms 3 and 4 pass 'violations <= s' **only vacuously** (`s ~ 4e7` against `n = 120` constraints), and their raw output is poor. That is unpacked on the **Claim 5** page, which separates the MWU engine (correct) from the private scale-selection step (needs `n ~ 1e5` to do anything). We did not attempt a scaled mixed-LP run: `T = Theta((S+R)V log n/alpha^3)` is ~50k iterations even on a 40-constraint instance, and the scale-selection step would need `n >~ 2e4` *simultaneously*, which we judged out of budget rather than infeasible in principle.
|
pages/claim-4-truncated-softmax-and-algorithms-1-2/page.md
ADDED
|
@@ -0,0 +1,295 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claim 4: truncated softmax and Algorithms 1-2
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "code", "id": "cell_775b34c658e3", "created_at": "2026-07-17T08:17:19+00:00", "title": "Run: uv exp_claim4_smax.py (exit 0)", "command": ["uv", "run", "python", "exp_claim4_smax.py"], "exit_code": 0, "duration_s": 13.287}
|
| 7 |
+
-->
|
| 8 |
+
````bash
|
| 9 |
+
$ uv run python exp_claim4_smax.py
|
| 10 |
+
````
|
| 11 |
+
|
| 12 |
+
exit 0 · 13.3s
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
````python title=exp_claim4_smax.py
|
| 16 |
+
"""Claim 4 (Section 2.4, Appendix A): the truncated softmax smax^U and its properties.
|
| 17 |
+
|
| 18 |
+
We verify, against independent numerical ground truth where possible:
|
| 19 |
+
|
| 20 |
+
P12 grad smax^U(x)_i = min{U, exp(x_i - t_U(x))}, and it is the argmax of the
|
| 21 |
+
variational problem max_{r in D^U} <x,r> - omega(r) [checked vs SLSQP]
|
| 22 |
+
-- smax^U value matches the numerically-solved optimum
|
| 23 |
+
-- coordinates of grad smax^U are capped at U and sum to 1 (the privacy lever)
|
| 24 |
+
P13 Hessian bound grad^2 smax^U(x) <= diag([grad smax^U|_Cbar ; 0_C])
|
| 25 |
+
P14 smax^U(x+u) <= smax^U(x) + (e^D - 1)/D <grad smax^U(x), u>, D = max u_i
|
| 26 |
+
(1) smax^U(x+u) <= smax^U(x) + (1+D) <grad smax^U(x), u> for u >= 0, D <= 1
|
| 27 |
+
(2) smin^U(x+u) >= smin^U(x) + (1-D) <grad smin^U(x), u>
|
| 28 |
+
top-s max_{|S|=s=1/U} <1_S/|S|, x> <= smax^U(x) -- the bound that converts a
|
| 29 |
+
smax^U certificate into "at most s violated constraints"
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
from __future__ import annotations
|
| 33 |
+
|
| 34 |
+
import json
|
| 35 |
+
|
| 36 |
+
import numpy as np
|
| 37 |
+
from scipy.optimize import minimize
|
| 38 |
+
|
| 39 |
+
from ppl.smax import bottomk_mean, grad_smax, grad_smin, smax, smin, topk_mean
|
| 40 |
+
|
| 41 |
+
|
| 42 |
+
def linear_max_over_capped_simplex(g: np.ndarray, U: float) -> float:
|
| 43 |
+
"""max_{r in D^U} <g, r>, exactly: greedily put mass U on the largest coordinates.
|
| 44 |
+
|
| 45 |
+
D^U = {r >= 0 : sum r = 1, max r <= U}, so the LP optimum fills floor(1/U) of the
|
| 46 |
+
largest coordinates to the cap and puts the remaining 1 - U*floor(1/U) on the next.
|
| 47 |
+
"""
|
| 48 |
+
gs = np.sort(g)[::-1]
|
| 49 |
+
k = int(np.floor(1.0 / U + 1e-12))
|
| 50 |
+
k = min(k, gs.size)
|
| 51 |
+
val = U * gs[:k].sum()
|
| 52 |
+
rem = 1.0 - U * k
|
| 53 |
+
if rem > 1e-15 and k < gs.size:
|
| 54 |
+
val += rem * gs[k]
|
| 55 |
+
return float(val)
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def optimality_gap(x: np.ndarray, U: float, r: np.ndarray) -> float:
|
| 59 |
+
"""Exact first-order certificate that r maximises <x,r> - omega(r) over D^U.
|
| 60 |
+
|
| 61 |
+
The objective is concave and differentiable on r > 0 with gradient
|
| 62 |
+
grad(r) = x - log r - 1. For a concave maximisation over a convex set, r is
|
| 63 |
+
optimal iff max_{r' in D^U} <grad(r), r' - r> <= 0. The inner maximisation is a
|
| 64 |
+
linear program over the capped simplex, solved exactly above -- so this certifies
|
| 65 |
+
optimality without relying on a numerical optimiser (SLSQP does not converge
|
| 66 |
+
tightly enough here to serve as ground truth).
|
| 67 |
+
"""
|
| 68 |
+
grad = x - np.log(np.clip(r, 1e-300, None)) - 1.0
|
| 69 |
+
return linear_max_over_capped_simplex(grad, U) - float(grad @ r)
|
| 70 |
+
|
| 71 |
+
|
| 72 |
+
def numeric_smax(x: np.ndarray, U: float) -> tuple[float, np.ndarray]:
|
| 73 |
+
"""Ground truth: solve max_{r in D^U} <x,r> - sum r log r with SLSQP."""
|
| 74 |
+
n = x.size
|
| 75 |
+
|
| 76 |
+
def neg_obj(r):
|
| 77 |
+
rr = np.clip(r, 1e-300, None)
|
| 78 |
+
return -(x @ r - np.sum(rr * np.log(rr)))
|
| 79 |
+
|
| 80 |
+
def neg_grad(r):
|
| 81 |
+
rr = np.clip(r, 1e-300, None)
|
| 82 |
+
return -(x - (np.log(rr) + 1.0))
|
| 83 |
+
|
| 84 |
+
r0 = np.full(n, 1.0 / n)
|
| 85 |
+
res = minimize(
|
| 86 |
+
neg_obj, r0, jac=neg_grad, method="SLSQP",
|
| 87 |
+
bounds=[(0.0, U)] * n,
|
| 88 |
+
constraints=[{"type": "eq", "fun": lambda r: r.sum() - 1.0,
|
| 89 |
+
"jac": lambda r: np.ones(n)}],
|
| 90 |
+
options={"maxiter": 800, "ftol": 1e-14},
|
| 91 |
+
)
|
| 92 |
+
return float(-res.fun), np.asarray(res.x)
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
def main() -> dict:
|
| 96 |
+
rng = np.random.default_rng(0)
|
| 97 |
+
out: dict = {}
|
| 98 |
+
|
| 99 |
+
# ---- P12: exact optimality certificate for the closed form ---------------
|
| 100 |
+
# (Primary check. We certify that the Proposition-12 closed form is the exact
|
| 101 |
+
# argmax of the variational problem, via the first-order condition.)
|
| 102 |
+
gaps = []
|
| 103 |
+
for _ in range(400):
|
| 104 |
+
n = int(rng.integers(4, 60))
|
| 105 |
+
U = float(rng.uniform(1.0 / n + 1e-3, 1.0))
|
| 106 |
+
x = rng.normal(0, rng.uniform(0.5, 6.0), size=n)
|
| 107 |
+
gaps.append(optimality_gap(x, U, grad_smax(x, U)))
|
| 108 |
+
out["P12_max_optimality_gap"] = float(np.max(gaps)) # <= 0 up to numerical noise
|
| 109 |
+
|
| 110 |
+
# ---- P12 secondary: closed form vs SLSQP ---------------------------------
|
| 111 |
+
# SLSQP is NOT a reliable ground truth for this problem (it stalls early), so we
|
| 112 |
+
# report the *signed* comparison: the closed form must never be worse. Where they
|
| 113 |
+
# differ it is SLSQP that is suboptimal -- confirmed by the certificate above.
|
| 114 |
+
signed, grad_err = [], []
|
| 115 |
+
for _ in range(200):
|
| 116 |
+
n = int(rng.integers(4, 25))
|
| 117 |
+
U = float(rng.uniform(1.0 / n + 1e-3, 1.0))
|
| 118 |
+
x = rng.normal(0, rng.uniform(0.5, 4.0), size=n)
|
| 119 |
+
v_num, r_num = numeric_smax(x, U)
|
| 120 |
+
v_cf, r_cf = smax(x, U), grad_smax(x, U)
|
| 121 |
+
signed.append(v_cf - v_num) # >= 0: closed form at least as good
|
| 122 |
+
grad_err.append(float(np.abs(r_cf - r_num).max()))
|
| 123 |
+
out["P12_min_signed_advantage_over_slsqp"] = float(np.min(signed))
|
| 124 |
+
out["P12_max_signed_advantage_over_slsqp"] = float(np.max(signed))
|
| 125 |
+
out["P12_grad_max_abs_err_vs_slsqp"] = float(np.max(grad_err))
|
| 126 |
+
|
| 127 |
+
# ---- simplex + cap: the privacy lever ------------------------------------
|
| 128 |
+
cap_slack, sum_err = [], []
|
| 129 |
+
for _ in range(500):
|
| 130 |
+
n = int(rng.integers(5, 400))
|
| 131 |
+
U = float(rng.uniform(1.0 / n, 1.0))
|
| 132 |
+
x = rng.normal(0, rng.uniform(0.5, 20.0), size=n)
|
| 133 |
+
r = grad_smax(x, U)
|
| 134 |
+
cap_slack.append(float(r.max() - U)) # must be <= 0
|
| 135 |
+
sum_err.append(abs(float(r.sum()) - 1.0))
|
| 136 |
+
out["cap_max_violation"] = float(np.max(cap_slack)) # <= ~0
|
| 137 |
+
out["simplex_max_sum_err"] = float(np.max(sum_err))
|
| 138 |
+
|
| 139 |
+
# ---- P13 Hessian bound ---------------------------------------------------
|
| 140 |
+
def hess_fd(x, U, h=1e-5):
|
| 141 |
+
n = x.size
|
| 142 |
+
Hm = np.zeros((n, n))
|
| 143 |
+
for i in range(n):
|
| 144 |
+
e = np.zeros(n)
|
| 145 |
+
e[i] = h
|
| 146 |
+
Hm[:, i] = (grad_smax(x + e, U) - grad_smax(x - e, U)) / (2 * h)
|
| 147 |
+
return 0.5 * (Hm + Hm.T)
|
| 148 |
+
|
| 149 |
+
worst_p13 = -np.inf
|
| 150 |
+
for _ in range(60):
|
| 151 |
+
n = int(rng.integers(4, 10))
|
| 152 |
+
U = float(rng.uniform(1.0 / n + 1e-2, 1.0))
|
| 153 |
+
x = rng.normal(0, 1.5, size=n)
|
| 154 |
+
g = grad_smax(x, U)
|
| 155 |
+
Hm = hess_fd(x, U)
|
| 156 |
+
C = g >= U - 1e-9
|
| 157 |
+
diag = np.where(C, 0.0, g)
|
| 158 |
+
# PSD check of diag(diag) - H (allow FD noise)
|
| 159 |
+
w = np.linalg.eigvalsh(np.diag(diag) - Hm)
|
| 160 |
+
worst_p13 = max(worst_p13, float(-w.min()))
|
| 161 |
+
out["P13_max_psd_violation"] = worst_p13 # ~0 up to finite-difference noise
|
| 162 |
+
|
| 163 |
+
# ---- P14 / eq (1) / eq (2) ----------------------------------------------
|
| 164 |
+
p14_slack, eq1_slack, eq2_slack = [], [], []
|
| 165 |
+
for _ in range(2000):
|
| 166 |
+
n = int(rng.integers(5, 200))
|
| 167 |
+
U = float(rng.uniform(1.0 / n, 1.0))
|
| 168 |
+
x = rng.normal(0, rng.uniform(0.5, 5.0), size=n)
|
| 169 |
+
u = rng.uniform(0, rng.uniform(0.05, 1.0), size=n) # u >= 0, max <= 1
|
| 170 |
+
D = float(u.max())
|
| 171 |
+
lhs = smax(x + u, U)
|
| 172 |
+
rhs_p14 = smax(x, U) + (np.exp(D) - 1.0) / D * (grad_smax(x, U) @ u)
|
| 173 |
+
rhs_eq1 = smax(x, U) + (1.0 + D) * (grad_smax(x, U) @ u)
|
| 174 |
+
p14_slack.append(lhs - rhs_p14) # <= 0
|
| 175 |
+
eq1_slack.append(lhs - rhs_eq1) # <= 0
|
| 176 |
+
lhs2 = smin(x + u, U)
|
| 177 |
+
rhs_eq2 = smin(x, U) + (1.0 - D) * (grad_smin(x, U) @ u)
|
| 178 |
+
eq2_slack.append(rhs_eq2 - lhs2) # <= 0
|
| 179 |
+
out["P14_max_violation"] = float(np.max(p14_slack))
|
| 180 |
+
out["eq1_max_violation"] = float(np.max(eq1_slack))
|
| 181 |
+
out["eq2_max_violation"] = float(np.max(eq2_slack))
|
| 182 |
+
|
| 183 |
+
# ---- top-s bound: max_{|S|=s} <1_S/|S|, x> <= smax^U(x), s = 1/U ---------
|
| 184 |
+
tops_slack, bots_slack = [], []
|
| 185 |
+
for _ in range(2000):
|
| 186 |
+
n = int(rng.integers(10, 500))
|
| 187 |
+
s = int(rng.integers(1, n + 1))
|
| 188 |
+
U = 1.0 / s
|
| 189 |
+
x = rng.uniform(0, rng.uniform(0.5, 10.0), size=n)
|
| 190 |
+
tops_slack.append(topk_mean(x, s) - smax(x, U)) # <= 0
|
| 191 |
+
bots_slack.append(smin(x, U) - bottomk_mean(x, s)) # <= 0
|
| 192 |
+
out["top_s_max_violation"] = float(np.max(tops_slack))
|
| 193 |
+
out["bottom_s_max_violation"] = float(np.max(bots_slack))
|
| 194 |
+
|
| 195 |
+
return out
|
| 196 |
+
|
| 197 |
+
|
| 198 |
+
if __name__ == "__main__":
|
| 199 |
+
res = main()
|
| 200 |
+
print(json.dumps(res, indent=2))
|
| 201 |
+
with open("outputs/claim4_smax.json", "w") as f:
|
| 202 |
+
json.dump(res, f, indent=2)
|
| 203 |
+
|
| 204 |
+
tol = 1e-6
|
| 205 |
+
checks = {
|
| 206 |
+
"P12 closed form is the exact argmax (first-order certificate)":
|
| 207 |
+
res["P12_max_optimality_gap"] < 1e-8,
|
| 208 |
+
"P12 closed form never worse than SLSQP":
|
| 209 |
+
res["P12_min_signed_advantage_over_slsqp"] > -1e-8,
|
| 210 |
+
"coordinate cap <= U": res["cap_max_violation"] < tol,
|
| 211 |
+
"weights on simplex": res["simplex_max_sum_err"] < tol,
|
| 212 |
+
"P13 Hessian bound": res["P13_max_psd_violation"] < 1e-4,
|
| 213 |
+
"P14 smax increase": res["P14_max_violation"] < tol,
|
| 214 |
+
"eq (1)": res["eq1_max_violation"] < tol,
|
| 215 |
+
"eq (2)": res["eq2_max_violation"] < tol,
|
| 216 |
+
"top-s bound": res["top_s_max_violation"] < tol,
|
| 217 |
+
"bottom-s bound": res["bottom_s_max_violation"] < tol,
|
| 218 |
+
}
|
| 219 |
+
print()
|
| 220 |
+
for k, v in checks.items():
|
| 221 |
+
print(f" [{'PASS' if v else 'FAIL'}] {k}")
|
| 222 |
+
raise SystemExit(0 if all(checks.values()) else 1)
|
| 223 |
+
|
| 224 |
+
````
|
| 225 |
+
|
| 226 |
+
|
| 227 |
+
````output
|
| 228 |
+
{
|
| 229 |
+
"P12_max_optimality_gap": 5.329070518200751e-15,
|
| 230 |
+
"P12_min_signed_advantage_over_slsqp": -2.007283228522283e-13,
|
| 231 |
+
"P12_max_signed_advantage_over_slsqp": 0.00027838197758356387,
|
| 232 |
+
"P12_grad_max_abs_err_vs_slsqp": 0.0002192671027614959,
|
| 233 |
+
"cap_max_violation": 1.6653345369377348e-15,
|
| 234 |
+
"simplex_max_sum_err": 2.220446049250313e-16,
|
| 235 |
+
"P13_max_psd_violation": 2.103299661080561e-11,
|
| 236 |
+
"P14_max_violation": -0.00015971538624981463,
|
| 237 |
+
"eq1_max_violation": -0.000493655001106319,
|
| 238 |
+
"eq2_max_violation": -0.0006833993316992526,
|
| 239 |
+
"top_s_max_violation": -0.2695476857573116,
|
| 240 |
+
"bottom_s_max_violation": -0.46878953790966127
|
| 241 |
+
}
|
| 242 |
+
|
| 243 |
+
[PASS] P12 closed form is the exact argmax (first-order certificate)
|
| 244 |
+
[PASS] P12 closed form never worse than SLSQP
|
| 245 |
+
[PASS] coordinate cap <= U
|
| 246 |
+
[PASS] weights on simplex
|
| 247 |
+
[PASS] P13 Hessian bound
|
| 248 |
+
[PASS] P14 smax increase
|
| 249 |
+
[PASS] eq (1)
|
| 250 |
+
[PASS] eq (2)
|
| 251 |
+
[PASS] top-s bound
|
| 252 |
+
[PASS] bottom-s bound
|
| 253 |
+
|
| 254 |
+
````
|
| 255 |
+
|
| 256 |
+
|
| 257 |
+
---
|
| 258 |
+
<!-- trackio-cell
|
| 259 |
+
{"type": "markdown", "id": "cell_b4d42983d230", "created_at": "2026-07-17T08:17:43+00:00", "title": "Claim 4 verdict"}
|
| 260 |
+
-->
|
| 261 |
+
## Verdict: **reproduced**. Every property of `smax^U` that the paper's analysis uses holds.
|
| 262 |
+
|
| 263 |
+
Claim 4 says Algorithms 1–2 solve packing/covering via a dense MWU built on a *truncated* softmax
|
| 264 |
+
`smax^U(x) = max_{r in D^U} <x,r> - omega(r)`, `D^U = {r in simplex : max r <= U}`, whose coordinates are capped at `U = 1/s` in order to control privacy sensitivity. This page tests that machinery directly.
|
| 265 |
+
|
| 266 |
+
### Results (400–2000 random instances per row)
|
| 267 |
+
|
| 268 |
+
| Paper statement | What we measured | Result |
|
| 269 |
+
|---|---|---|
|
| 270 |
+
| **Prop 12** gradient closed form `min{U, exp(x_i - t_U(x))}` | exact first-order optimality gap | **5.3e-15** — it *is* the argmax |
|
| 271 |
+
| — (secondary) | closed form vs SLSQP, signed | never worse (min advantage **-2.0e-13**, i.e. 0) |
|
| 272 |
+
| coordinates capped at `U` | `max_i grad - U` | **1.7e-15** (<= 0) |
|
| 273 |
+
| weights on the simplex | `abs(sum grad - 1)` | **2.2e-16** |
|
| 274 |
+
| **Prop 13** Hessian bound | min eigenvalue of `diag(g) - H` | **-2.1e-11** (= 0 up to finite-difference noise) |
|
| 275 |
+
| **Prop 14** `smax^U(x+u) <= smax^U(x) + ((e^D-1)/D)<grad, u>` | max violation | **-1.6e-4** (<= 0) |
|
| 276 |
+
| **eq (1)** `smax^U(x+u) <= smax^U(x) + (1+D)<grad, u>` | max violation | **-4.9e-4** (<= 0) |
|
| 277 |
+
| **eq (2)** `smin^U(x+u) >= smin^U(x) + (1-D)<grad, u>` | max violation | **-6.8e-4** (<= 0) |
|
| 278 |
+
| **top-s bound** `max_{|S|=s=1/U} <1_S/|S|, x> <= smax^U(x)` | max violation | **-0.27** (<= 0) |
|
| 279 |
+
| bottom-s bound (covering analogue) | max violation | **-0.47** (<= 0) |
|
| 280 |
+
|
| 281 |
+
All ten pass. Negative numbers are slack: the inequality holds with room to spare.
|
| 282 |
+
|
| 283 |
+
### Why the top-s bound is the load-bearing one
|
| 284 |
+
|
| 285 |
+
This is the step that turns an optimisation certificate into a *privacy* guarantee, and it is worth spelling out because it is the whole architecture of the paper:
|
| 286 |
+
|
| 287 |
+
1. The cap `U` bounds every weight, so changing **one constraint** moves the score `Q` by at most `3H/s` (verified separately on the Claim 1 page: observed/claimed = **0.015**).
|
| 288 |
+
2. Low sensitivity ⇒ the exponential mechanism is accurate at small `eps'` ⇒ the MWU converges.
|
| 289 |
+
3. Conversely `max_{|S|=s} <1_S/|S|, Ax> <= smax^U(Ax) <= 1+alpha` means *the average of the `s` largest constraint values is at most `1+alpha`*, so **at most `s = 1/U` constraints can exceed `1+alpha`**.
|
| 290 |
+
|
| 291 |
+
So the single parameter `U` simultaneously buys the privacy sensitivity **and** names the number of constraints that get dropped — `s = 1/U` is not a coincidence, it is the same quantity read two ways. Our measurements confirm both directions of that identity.
|
| 292 |
+
|
| 293 |
+
### Note on Prop 12's degenerate case
|
| 294 |
+
|
| 295 |
+
At `U·n = 1` exactly, `D^U` is the single point `{uniform}` and the gradient formula's `t_U(x)` is `-inf`; `smax^U(x)` degenerates to `mean(x) + log n`. The paper does not discuss this, and it is not a defect (the regime is uninteresting: no truncation freedom), but any implementation must special-case it — a naive bracket search hangs forever. Verified our handling matches the analytic value.
|
pages/claim-5-mwu-variants-for-mixed-packing-covering-algorithms-3-4/page.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Claim 5: MWU variants for mixed packing-covering (Algorithms 3-4)
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "markdown", "id": "cell_1a8e2815f79a", "created_at": "2026-07-17T08:20:10+00:00", "title": "Claim 5 verdict"}
|
| 7 |
+
-->
|
| 8 |
+
## Verdict: **the MWU engine reproduces; the private scale-selection step is vacuous at every scale we could run.**
|
| 9 |
+
|
| 10 |
+
Claim 5 (Section 5): Algorithms 3 (data-dependent) and 4 (data-independent) give MWU variants for mixed packing-covering, paralleling the pure constructions of Sections 3.1–3.2 and 4.1. Both are implemented, including Algorithm 4's `MaxEstimator` pre-processing.
|
| 11 |
+
|
| 12 |
+
### The problem with a naive end-to-end test
|
| 13 |
+
|
| 14 |
+
Run as written with a practical iteration cap, Algorithm 3's output looks like garbage:
|
| 15 |
+
|
| 16 |
+
| alpha | T run / T theory | s bound | violations | max `Px` |
|
| 17 |
+
|---|---|---|---|---|
|
| 18 |
+
| 0.3 | 3,000 / 332,500 | 4.1e7 | 60/120 | **1902.2** |
|
| 19 |
+
| 0.5 | 3,000 / 71,820 | 3.8e6 | 60/120 | **1448.8** |
|
| 20 |
+
| 0.3 | 3,000 / 378,785 | 5.5e7 | 60/120 | **0.001** |
|
| 21 |
+
|
| 22 |
+
`max Px` should be `<= 1+alpha`; it is 1900 or 0.001. And 'violations <= s' *passes* — because `s = 4e7` and there are only 120 constraints. **A reproduction that stopped here could report 'all checks pass' while the algorithm is producing nothing.** So we separated the two possible causes.
|
| 23 |
+
|
| 24 |
+
### Isolating the MWU from the scale selection
|
| 25 |
+
|
| 26 |
+
We ran small instances (20+20 constraints, d=3) to their **full** theoretical `T ~ 48,000` iterations — no cap — and measured the actual engine of Lemma 21, `smax^U(P x_T)/smin^U(C x_T) <= 1+alpha`, then compared the *best* scale `k` against the one the private exponential mechanism returns:
|
| 27 |
+
|
| 28 |
+
| T (full) | `smax/smin` | bound `1+alpha` | violations @ **best** scale | violations @ **private** scale |
|
| 29 |
+
|---|---|---|---|---|
|
| 30 |
+
| 48,524 | **0.2705** | 1.5 | **0 / 40** | 20 / 40 |
|
| 31 |
+
| 46,943 | **0.3422** | 1.5 | **0 / 40** | 20 / 40 |
|
| 32 |
+
| 51,147 | **0.3213** | 1.5 | **0 / 40** | 20 / 40 |
|
| 33 |
+
|
| 34 |
+
Two clean conclusions:
|
| 35 |
+
|
| 36 |
+
1. **The MWU engine of Algorithm 3 is correct.** Lemma 21's ratio bound holds with large margin, and the iterate `x_T` it produces is — at the right scale — **exactly feasible (0/40 violations)**. The construction does what Section 5 says it does.
|
| 37 |
+
2. **The private scale selection (line 9) is what destroys the solution at this scale**, and it does so for a reason the theory predicts. That step runs an exponential mechanism over ~57 candidate powers of `(1+alpha)` with score `-(number of violated constraints)`, sensitivity 1, at `eps' = 6.1e-4`. Its utility guarantee is `count <= min_count + 2(log(#cands) + log(1/beta))/eps' ~ 0 + 20,760` — i.e. it promises 'at most 20,760 violations' on an instance with **40 constraints**. It is vacuous, so it picks a near-uniformly random scale, and we observe exactly that.
|
| 38 |
+
|
| 39 |
+
For line 9 to do anything, one needs `n >> 2(log(#cands)+log(1/beta))/eps' ~ 2e4` constraints *while simultaneously* running `T ~ 5e4` iterations. That product is what put a faithful scaled mixed-LP run out of our budget — not any obstacle in principle.
|
| 40 |
+
|
| 41 |
+
### Algorithm 4
|
| 42 |
+
|
| 43 |
+
Implemented with the `MaxEstimator(m, M, {a_i}, eps, beta)` sub-routine of Lemma 22 (exponential mechanism over `k` with `2^k m in [m, 2M]`, score `-|{a_i >= 2^k m}| - c·k`), the per-coordinate filtering of Lemma 23, and the `C_ij <- min{C_ij + alpha M_j/d, 40 d M_j/alpha}` clip. It runs and its bound exponents are exact (`d^3`, `alpha^-6`; see Claim 3). Its end-to-end output suffers from the same vacuous scale-selection step, for the same reason.
|
| 44 |
+
|
| 45 |
+
### Summary
|
| 46 |
+
|
| 47 |
+
Claim 5 says Sections 5.1–5.2 *give* these two algorithms paralleling the pure case. That is reproduced: both exist, both are implementable from the pseudocode, both have the stated bounds, and Algorithm 3's MWU provably converges to a scalable feasible point at full `T`. What we cannot show at our scale is the *end-to-end private* guarantee, because its final step needs `n` far larger than the iteration budget allows.
|
pages/conclusion/page.md
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pages/index.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Repro - Solving Positive Linear Programs with Differential Privacy
|
| 2 |
+
|
| 3 |
+
## Pages
|
| 4 |
+
|
| 5 |
+
| Page |
|
| 6 |
+
| --- |
|
| 7 |
+
| [Claim 1: instance-dependent (A_max·OPT)^1.5 bound, improving Hsu et al. by OPT^0.5](#/claim-1-instance-dependent-a-max-opt-1-5-bound-improving-hsu-et-al-by-opt-0-5) |
|
| 8 |
+
| [Claim 2: data-independent d^1.5 / alpha^3.5 bound](#/claim-2-data-independent-d-1-5-alpha-3-5-bound) |
|
| 9 |
+
| [Claim 3: mixed packing-covering bounds (Theorem 2)](#/claim-3-mixed-packing-covering-bounds-theorem-2) |
|
| 10 |
+
| [Claim 4: truncated softmax and Algorithms 1-2](#/claim-4-truncated-softmax-and-algorithms-1-2) |
|
| 11 |
+
| [Claim 5: MWU variants for mixed packing-covering (Algorithms 3-4)](#/claim-5-mwu-variants-for-mixed-packing-covering-algorithms-3-4) |
|
| 12 |
+
| [Setup and methodology](#/setup-and-methodology) |
|
| 13 |
+
| [Conclusion](#/conclusion) |
|
| 14 |
+
| [private-positive-lp-repro](#/private-positive-lp-repro) |
|
pages/private-positive-lp-repro/page.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# private-positive-lp-repro
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "artifact", "id": "cell_e251ec1a8579", "created_at": "2026-07-17T08:42:32+00:00", "title": "Artifact: private-positive-lp-repro/repro-bundle:v0", "artifact": "private-positive-lp-repro/repro-bundle:v0", "artifact_type": "dataset"}
|
| 7 |
+
-->
|
| 8 |
+
**📦 Artifact** `private-positive-lp-repro/repro-bundle:v0` · dataset · 6.3 MB
|
| 9 |
+
|
| 10 |
+
https://huggingface.co/buckets/txus/repro-solving-positive-linear-programs-with-differential-privacy-artifacts#private-positive-lp-repro/repro-bundle:v0
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
<!-- trackio-cell
|
| 15 |
+
{"type": "artifact", "id": "cell_b1ec72a5a828", "created_at": "2026-07-17T08:58:22+00:00", "title": "Artifact: private-positive-lp-repro/repro-bundle:v1", "artifact": "private-positive-lp-repro/repro-bundle:v1", "artifact_type": "dataset"}
|
| 16 |
+
-->
|
| 17 |
+
**📦 Artifact** `private-positive-lp-repro/repro-bundle:v1` · dataset · 7.4 MB
|
| 18 |
+
|
| 19 |
+
https://huggingface.co/buckets/txus/repro-solving-positive-linear-programs-with-differential-privacy-artifacts#private-positive-lp-repro/repro-bundle:v1
|
pages/setup-and-methodology/page.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Setup and methodology
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
---
|
| 5 |
+
<!-- trackio-cell
|
| 6 |
+
{"type": "markdown", "id": "cell_5c4d04cb966a", "created_at": "2026-07-17T08:16:59+00:00", "title": "Setup and methodology"}
|
| 7 |
+
-->
|
| 8 |
+
## What kind of paper this is
|
| 9 |
+
|
| 10 |
+
[Solving Positive Linear Programs with Differential Privacy](https://arxiv.org/abs/2604.26838) (Ene, Nguyen, Nguyen, Vladu; ICML 2026, OpenReview `zlSioMUQ2Y`) is a **pure theory paper**. It contains no experiments, no figures, no tables, no code, no datasets — the five claims are Theorems 1, 2 and the algorithms of Sections 2.4, 3, 4 and 5. There are no reported numbers to match.
|
| 11 |
+
|
| 12 |
+
So 'reproduction' here cannot mean 're-run their experiments'. It means: **implement Algorithms 1–4 from the pseudocode and empirically test the mathematical statements the theorems make** — the closed forms, the inequalities each proof rests on, and the end-to-end guarantees. Where a statement is a worst-case asymptotic claim, we say so rather than pretending a finite experiment settles it.
|
| 13 |
+
|
| 14 |
+
## What is and isn't checkable
|
| 15 |
+
|
| 16 |
+
| Statement type | Example | Testable? |
|
| 17 |
+
|---|---|---|
|
| 18 |
+
| Closed form | Prop 12: `grad smax^U(x)_i = min{U, exp(x_i - t_U(x))}` | **Yes, exactly** — certify it is the argmax |
|
| 19 |
+
| Inequality on iterates | eq (1), Lemmas 8/16/20/21 | **Yes** — evaluate on real algorithm runs |
|
| 20 |
+
| DP composition arithmetic | Lemma 7: `eps'` composes to `(eps, delta)` | **Yes** — numerically |
|
| 21 |
+
| End-to-end utility | Thm 6: `1^T x >= (1-alpha) OPT` | **Yes** — run the algorithm |
|
| 22 |
+
| `O~()` polynomial exponent | Thm 1: `s ~ d^1.5` | **Yes**, with care (see below) |
|
| 23 |
+
| Worst-case asymptotic superiority | 'improves Hsu et al. by `OPT^0.5`' | **Only partly** — a finite sample of instances cannot establish a worst case |
|
| 24 |
+
| `(eps, delta)`-DP itself | Lemma 7 | **No** — we verify the composition arithmetic and the sensitivity bound it depends on, not privacy by audit |
|
| 25 |
+
|
| 26 |
+
## Two methodological points that materially changed the results
|
| 27 |
+
|
| 28 |
+
**1. `O~()` hides a polylog, which biases a naive exponent fit.** The bounds are stated as `O~()`, hiding a `(log d + log(T/beta))` factor that *itself grows* with `d`, `OPT` and `1/alpha`. Fitting `log s` against `log d` directly gives **1.60**, not the claimed 1.5 — the log factor inflates the slope. Dividing out that known factor before fitting recovers **1.5000**. Every exponent below is reported **both ways**; the polylog-corrected one is the one the theorem actually asserts.
|
| 29 |
+
|
| 30 |
+
**2. SLSQP is not a valid ground truth for `smax^U`.** Our first attempt validated the Prop-12 closed form against `scipy.optimize.minimize(method='SLSQP')` and it *failed* (max discrepancy 0.049). Investigating: the closed form attains a **strictly higher** objective than SLSQP on every disagreeing instance, and both are feasible — since this is a maximisation, SLSQP was the one stalling, not the closed form. We replaced it with an **exact first-order optimality certificate**: the objective is concave, so `r` is optimal iff `max_{r' in D^U} <grad(r), r' - r> <= 0`, and that inner maximisation is a linear program over the capped simplex with an exact greedy solution. Gap measured: **5.3e-15**.
|
| 31 |
+
|
| 32 |
+
## The scale problem (why a GPU job is needed, and what it can and cannot show)
|
| 33 |
+
|
| 34 |
+
The bounds carry large constants (`s = 60 H·OPT (log d + log(T/beta)) / (alpha eps')`) and `1/eps' = 2 sqrt(T log(1/delta))/eps`. The result is that **`s > n` on any small instance**, making 'at most `s` constraints violated' *vacuously true*. A reproduction that only ran small instances and reported 'guarantee holds' would be reporting nothing.
|
| 35 |
+
|
| 36 |
+
We computed where the bound starts to bite for packing without pre-processing (`H = A_max = 1`, `OPT ~ 1`):
|
| 37 |
+
|
| 38 |
+
| n | alpha=0.3 | alpha=0.5 |
|
| 39 |
+
|---|---|---|
|
| 40 |
+
| 1e5 | s/n = 8.98 (vacuous) | s/n = 2.96 (vacuous) |
|
| 41 |
+
| **1e6** | **s/n = 0.999** | **s/n = 0.329** |
|
| 42 |
+
| **2e6** | **s/n = 0.514** | **s/n = 0.169** |
|
| 43 |
+
|
| 44 |
+
So `n = 2e6` is the smallest round scale at which the theorem says something non-trivial, and reaching it with the full `T` iteration count is what the GPU job is for. Note this is a property of the *packing, no-pre-processing* branch — the covering and pre-processing branches have `s` in the `1e7`–`1e10` range and stay vacuous at every scale we can run. We report that rather than hide it.
|
| 45 |
+
|
| 46 |
+
## Implementation
|
| 47 |
+
|
| 48 |
+
Algorithms 1–4 are transcribed from the pseudocode. Two places where the typeset pseudocode is ambiguous were resolved against the proofs (which are authoritative):
|
| 49 |
+
|
| 50 |
+
- **Alg 1 line 10**: the post-processing threshold reads `x_j <= 2/H`; the proof of Lemma 9 truncates entries below `alpha·OPT/d`. With `H = 2d/(alpha·OPT)` these are *identical* (`2/H = alpha·OPT/d`), so there is no real ambiguity — we use `alpha·OPT/d`.
|
| 51 |
+
- **Alg 2 line 3**: reads `T = 20 H OPT log n / alpha`; the proof of Lemma 18 fixes `T = 2 log n/(eta·alpha)` with `eta = alpha/(10 H OPT)`, i.e. `T = 20 H OPT log n / alpha^2`, matching Algorithm 1. We use the proof's value and believe the `alpha` in the pseudocode is a typo.
|
| 52 |
+
|
| 53 |
+
The exponential mechanism follows the paper's own Theorem 4 accounting: sampling `j` with probability proportional to `exp(eps·Q(j)/(2·Delta))`, which is what reproduces the `2 Delta (log d + log 1/beta)/eps` utility term that Lemmas 8 and 16 plug in.
|
| 54 |
+
|
| 55 |
+
**One real bug we hit and fixed** (worth recording for the next agent): when `U·n == 1` exactly, `D^U` collapses to the single uniform point, `f(t) = sum_i min(U, exp(x_i - t))` approaches 1 from below and never exceeds it, so a bisection bracket search of the form `while f(lo) < 1: lo -= 10` **never terminates**. This is not an edge case — it is the *common* path, because `U = 1/s` is clamped to `1/n` whenever the bound is vacuous. Guarded by returning the uniform vector directly; verified `smax^U(x) = mean(x) + log n` there, as it must be.
|
trackio-logo-light.png
ADDED
|
trackio-logo.png
ADDED
|
trackio-wordmark-dark.png
ADDED
|