Spaces:
Running
Running
add link to model card in page
Browse files- index.html +4 -3
index.html
CHANGED
|
@@ -17,9 +17,9 @@
|
|
| 17 |
<body>
|
| 18 |
<h1>get-name — extract the intended person's first name (in-browser)</h1>
|
| 19 |
<p class="muted">
|
| 20 |
-
|
| 21 |
-
<
|
| 22 |
-
No server
|
| 23 |
</p>
|
| 24 |
<p><textarea id="q" placeholder='Type a sentence… e.g. Nice to meet you, Alex'>By the way, Alice, if you don't know, how old am I?</textarea></p>
|
| 25 |
<p><button id="go" onclick="run()" disabled>Extract name</button>
|
|
@@ -109,6 +109,7 @@ init().catch(e => { document.getElementById("status").textContent = "error: " +
|
|
| 109 |
<li>Runs fully client-side (WASM ~325 KB, weights ~13.7 MB, ~700 MB peak RAM).</li>
|
| 110 |
<li>CORS: works from any <code>http(s)</code> page; for a local file open over <code>python3 -m http.server</code>.</li>
|
| 111 |
<li>Gives one answer per <code>complete()</code> call — for batches, call the engine fresh per text (see README).</li>
|
|
|
|
| 112 |
</ul></div>
|
| 113 |
</body>
|
| 114 |
</html>
|
|
|
|
| 17 |
<body>
|
| 18 |
<h1>get-name — extract the intended person's first name (in-browser)</h1>
|
| 19 |
<p class="muted">
|
| 20 |
+
Model: <a href="https://huggingface.co/Qrzysztof/get-name">Qrzysztof/get-name</a> ·
|
| 21 |
+
Built on <a href="https://huggingface.co/Cactus-Compute/needle2">cactus-needle</a>.
|
| 22 |
+
Loads the engine + tuned weights <em>directly from Hugging Face</em>. No server — everything runs in this tab.
|
| 23 |
</p>
|
| 24 |
<p><textarea id="q" placeholder='Type a sentence… e.g. Nice to meet you, Alex'>By the way, Alice, if you don't know, how old am I?</textarea></p>
|
| 25 |
<p><button id="go" onclick="run()" disabled>Extract name</button>
|
|
|
|
| 109 |
<li>Runs fully client-side (WASM ~325 KB, weights ~13.7 MB, ~700 MB peak RAM).</li>
|
| 110 |
<li>CORS: works from any <code>http(s)</code> page; for a local file open over <code>python3 -m http.server</code>.</li>
|
| 111 |
<li>Gives one answer per <code>complete()</code> call — for batches, call the engine fresh per text (see README).</li>
|
| 112 |
+
<li>Model card, training data & API docs: <a href="https://huggingface.co/Qrzysztof/get-name">Qrzysztof/get-name</a>.</li>
|
| 113 |
</ul></div>
|
| 114 |
</body>
|
| 115 |
</html>
|