Update index.html
Browse files- index.html +8 -40
index.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<html>
|
2 |
<head>
|
3 |
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
|
4 |
-
<title>
|
5 |
</head>
|
6 |
<body></body>
|
7 |
</html>
|
@@ -39,7 +39,7 @@
|
|
39 |
import hljs from "https://cdn.skypack.dev/highlight.js";
|
40 |
// models base url
|
41 |
const MODELS = {
|
42 |
-
|
43 |
base_url:
|
44 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
45 |
model: "model-q4k.gguf",
|
@@ -49,7 +49,7 @@
|
|
49 |
seq_len: 2048,
|
50 |
size: "800 MB",
|
51 |
},
|
52 |
-
|
53 |
base_url:
|
54 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
55 |
model: "model-q80.gguf",
|
@@ -59,7 +59,7 @@
|
|
59 |
seq_len: 2048,
|
60 |
size: "1.51 GB",
|
61 |
},
|
62 |
-
|
63 |
base_url:
|
64 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
65 |
model: "model-puffin-phi-v2-q4k.gguf",
|
@@ -69,7 +69,7 @@
|
|
69 |
seq_len: 2048,
|
70 |
size: "798 MB",
|
71 |
},
|
72 |
-
|
73 |
base_url:
|
74 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
75 |
model: "model-puffin-phi-v2-q80.gguf",
|
@@ -320,43 +320,11 @@ Very polite review:`,
|
|
320 |
<main class="grid grid-cols-1 gap-8 relative">
|
321 |
<span class="absolute text-5xl -ml-[1em]"> 🕯️ </span>
|
322 |
<div>
|
323 |
-
<h1 class="text-5xl font-bold">
|
324 |
<h2 class="text-2xl font-bold">Rust/WASM Demo</h2>
|
325 |
<p class="max-w-lg">
|
326 |
-
The
|
327 |
-
|
328 |
-
href="https://huggingface.co/microsoft/phi-1_5"
|
329 |
-
class="link"
|
330 |
-
target="_blank"
|
331 |
-
>Phi-1.5</a
|
332 |
-
>
|
333 |
-
model achieves state-of-the-art performance with only 1.3 billion
|
334 |
-
parameters, compared to models with up to 10 billion. You can try the
|
335 |
-
quantized version of the model here. Additional prompt examples are
|
336 |
-
available in the
|
337 |
-
<a
|
338 |
-
href="https://arxiv.org/pdf/2309.05463.pdf#page=8"
|
339 |
-
class="link"
|
340 |
-
target="_blank"
|
341 |
-
>
|
342 |
-
technical report </a
|
343 |
-
>.
|
344 |
-
</p>
|
345 |
-
<p class="max-w-lg">
|
346 |
-
You can also try
|
347 |
-
<a
|
348 |
-
href="https://huggingface.co/teknium/Puffin-Phi-v2"
|
349 |
-
class="link"
|
350 |
-
target="_blank"
|
351 |
-
>Puffin-Phi V2
|
352 |
-
</a>
|
353 |
-
quantized version model, a fine-tuned version of Phi-1.5 on the
|
354 |
-
<a
|
355 |
-
href="https://huggingface.co/datasets/LDJnr/Puffin"
|
356 |
-
class="link"
|
357 |
-
target="_blank"
|
358 |
-
>Puffin dataset
|
359 |
-
</a>
|
360 |
</p>
|
361 |
</div>
|
362 |
<div>
|
|
|
1 |
<html>
|
2 |
<head>
|
3 |
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
|
4 |
+
<title>EasyChat - 安风 Rust/Web ASSEMBLY</title>
|
5 |
</head>
|
6 |
<body></body>
|
7 |
</html>
|
|
|
39 |
import hljs from "https://cdn.skypack.dev/highlight.js";
|
40 |
// models base url
|
41 |
const MODELS = {
|
42 |
+
vp_quantized: {
|
43 |
base_url:
|
44 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
45 |
model: "model-q4k.gguf",
|
|
|
49 |
seq_len: 2048,
|
50 |
size: "800 MB",
|
51 |
},
|
52 |
+
vp_quantized_q8: {
|
53 |
base_url:
|
54 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
55 |
model: "model-q80.gguf",
|
|
|
59 |
seq_len: 2048,
|
60 |
size: "1.51 GB",
|
61 |
},
|
62 |
+
long_v2_quantized: {
|
63 |
base_url:
|
64 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
65 |
model: "model-puffin-phi-v2-q4k.gguf",
|
|
|
69 |
seq_len: 2048,
|
70 |
size: "798 MB",
|
71 |
},
|
72 |
+
long_v2_quantized_q8: {
|
73 |
base_url:
|
74 |
"https://huggingface.co/lmz/candle-quantized-phi/resolve/main/",
|
75 |
model: "model-puffin-phi-v2-q80.gguf",
|
|
|
320 |
<main class="grid grid-cols-1 gap-8 relative">
|
321 |
<span class="absolute text-5xl -ml-[1em]"> 🕯️ </span>
|
322 |
<div>
|
323 |
+
<h1 class="text-5xl font-bold">EasyChat - 安风</h1>
|
324 |
<h2 class="text-2xl font-bold">Rust/WASM Demo</h2>
|
325 |
<p class="max-w-lg">
|
326 |
+
The EC-VP model achieves state-of-the-art performance with only 1.3 billion
|
327 |
+
parameters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
</p>
|
329 |
</div>
|
330 |
<div>
|