Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
|
@@ -136,7 +136,7 @@
|
|
| 136 |
dtype: 'q4', // Use 4-bit quantization for efficiency
|
| 137 |
progress_callback: (data) => {
|
| 138 |
if (data.status === 'progress') {
|
| 139 |
-
const percent = Math.round(data.progress *
|
| 140 |
statusText.textContent = `Loading: ${percent}%`;
|
| 141 |
} else if (data.status === 'ready') {
|
| 142 |
statusText.textContent = "Model loaded!";
|
|
|
|
| 136 |
dtype: 'q4', // Use 4-bit quantization for efficiency
|
| 137 |
progress_callback: (data) => {
|
| 138 |
if (data.status === 'progress') {
|
| 139 |
+
const percent = Math.round(data.progress * 1);
|
| 140 |
statusText.textContent = `Loading: ${percent}%`;
|
| 141 |
} else if (data.status === 'ready') {
|
| 142 |
statusText.textContent = "Model loaded!";
|