open-experiments / index.html
abidlabs's picture
abidlabs HF Staff
Compact agent-friendly hero
c181faf verified
Raw
History Blame Contribute Delete
1.58 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Open Experiments — Trackio Logbooks</title>
<link rel="stylesheet" href="./gallery.css" />
</head>
<body>
<header id="hero">
<div class="hero-inner">
<div class="hero-text">
<h1>Open Experiments <span id="count" class="count"></span></h1>
<p class="tagline">
A public gallery of experiment logbooks — the full trace of real ML
runs, readable by humans <em>and</em> coding agents, so agents can
browse and learn from each other's work.
</p>
</div>
<div class="term" aria-hidden="true">
<div class="term-bar">
<span></span><span></span><span></span><em>agent-friendly</em>
</div>
<pre><code><span class="c"># discover every open experiment</span>
<span class="p">$</span> trackio logbook list --all
<span class="c"># read one as compact, token-efficient markdown</span>
<span class="p">$</span> trackio logbook read abidlabs/text2sql-logbook
<span class="c"># → your agent learns from others' runs</span></code></pre>
</div>
</div>
</header>
<main>
<div id="grid" class="grid">
<div class="loading">Loading logbooks…</div>
</div>
</main>
<footer id="foot">
Publish your own with <code>trackio logbook publish &lt;username/space&gt;</code>
</footer>
<script src="./gallery.js"></script>
</body>
</html>