Spaces:
Running
Running
Upload index.html
Browse files- index.html +43 -2
index.html
CHANGED
|
@@ -1112,6 +1112,14 @@
|
|
| 1112 |
color: #1e293b;
|
| 1113 |
}
|
| 1114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1115 |
/* Pagination Controls */
|
| 1116 |
.pagination-controls {
|
| 1117 |
display: flex;
|
|
@@ -1465,6 +1473,11 @@
|
|
| 1465 |
color: #fde047;
|
| 1466 |
}
|
| 1467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1468 |
.daily-upload-model[data-type="sdxl"] {
|
| 1469 |
background: rgba(101, 163, 13, 0.22);
|
| 1470 |
color: #d9f99d;
|
|
@@ -2031,6 +2044,15 @@
|
|
| 2031 |
<span>Klein9</span>
|
| 2032 |
</label>
|
| 2033 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2034 |
<label class="checkbox-label">
|
| 2035 |
<input
|
| 2036 |
id="selectedQwen"
|
|
@@ -2502,6 +2524,7 @@
|
|
| 2502 |
zimage: 'Z Image Turbo',
|
| 2503 |
zbase: 'Z Image Base',
|
| 2504 |
klein9: 'Klein9',
|
|
|
|
| 2505 |
qwen: 'Qwen'
|
| 2506 |
};
|
| 2507 |
return baseNames[baseType] || baseType;
|
|
@@ -2518,6 +2541,7 @@
|
|
| 2518 |
embedding: 'embeddings',
|
| 2519 |
flux: 'flux',
|
| 2520 |
klein9: 'klein9',
|
|
|
|
| 2521 |
wan: 'wan',
|
| 2522 |
sdxl: 'sdxl',
|
| 2523 |
ltx: 'ltx',
|
|
@@ -2861,6 +2885,7 @@
|
|
| 2861 |
if (document.getElementById('selectedQwen').checked) selectedTypes.push('qwen');
|
| 2862 |
if (document.getElementById('selectedLtx').checked) selectedTypes.push('ltx');
|
| 2863 |
if (document.getElementById('selectedKlein9').checked) selectedTypes.push('klein9');
|
|
|
|
| 2864 |
return selectedTypes;
|
| 2865 |
}
|
| 2866 |
|
|
@@ -2903,6 +2928,7 @@
|
|
| 2903 |
embedding: 'SD Embedding',
|
| 2904 |
flux: 'Flux',
|
| 2905 |
klein9: 'Klein9',
|
|
|
|
| 2906 |
wan: 'WAN',
|
| 2907 |
sdxl: 'SDXL',
|
| 2908 |
ltx: 'LTX',
|
|
@@ -3014,6 +3040,7 @@
|
|
| 3014 |
'zimage',
|
| 3015 |
'zbase',
|
| 3016 |
'klein9',
|
|
|
|
| 3017 |
'qwen'
|
| 3018 |
];
|
| 3019 |
const orderIndex = new Map(modelTypeOrder.map((t, i) => [t, i]));
|
|
@@ -3219,6 +3246,12 @@
|
|
| 3219 |
${formatModalHFLinks(element.klein9, 'klein9', personFilenames.klein9)}
|
| 3220 |
</span>
|
| 3221 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3222 |
<div class="modal-stat-row">
|
| 3223 |
<span class="modal-stat-label">${yesNo(element.qwen)} Qwen</span>
|
| 3224 |
<span class="modal-stat-value">
|
|
@@ -3378,6 +3411,7 @@
|
|
| 3378 |
embedding: presence[property].embedding,
|
| 3379 |
flux: presence[property].flux,
|
| 3380 |
klein9: presence[property].klein9,
|
|
|
|
| 3381 |
wan: presence[property].wan,
|
| 3382 |
sdxl: presence[property].sdxl,
|
| 3383 |
ltx: presence[property].ltx,
|
|
@@ -3393,6 +3427,7 @@
|
|
| 3393 |
embeddingHFLink: presence[property]?.embeddingHFLink,
|
| 3394 |
fluxHFLink: presence[property]?.fluxHFLink,
|
| 3395 |
klein9HFLink: presence[property]?.klein9HFLink,
|
|
|
|
| 3396 |
wanHFLink: presence[property]?.wanHFLink,
|
| 3397 |
sdxlHFLink: presence[property]?.sdxlHFLink,
|
| 3398 |
ltxHFLink: presence[property]?.ltxHFLink,
|
|
@@ -3407,7 +3442,7 @@
|
|
| 3407 |
const personData = uploadData.data[personKey];
|
| 3408 |
if (!personData || !personData.models) return false;
|
| 3409 |
|
| 3410 |
-
const allTypes = ['locon', 'lora', 'embedding', 'flux', 'wan', 'sdxl', 'ltx', 'qwen', 'zimage', 'zbase', 'klein9'];
|
| 3411 |
const typesToCheck = types && types.length > 0 ? types : allTypes;
|
| 3412 |
|
| 3413 |
for (const modelType of typesToCheck) {
|
|
@@ -3459,6 +3494,7 @@
|
|
| 3459 |
{ selected: document.getElementById('selectedZimage').checked, property: element.zimage },
|
| 3460 |
{ selected: document.getElementById('selectedZbase').checked, property: element.zbase },
|
| 3461 |
{ selected: document.getElementById('selectedKlein9').checked, property: element.klein9 },
|
|
|
|
| 3462 |
{ selected: document.getElementById('selectedQwen').checked, property: element.qwen },
|
| 3463 |
];
|
| 3464 |
|
|
@@ -3687,7 +3723,12 @@
|
|
| 3687 |
images.push(...personHFImages.Klein9);
|
| 3688 |
}
|
| 3689 |
|
| 3690 |
-
// 4. Add
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3691 |
if (personHFImages.WAN) {
|
| 3692 |
images.push(...personHFImages.WAN);
|
| 3693 |
}
|
|
|
|
| 1112 |
color: #1e293b;
|
| 1113 |
}
|
| 1114 |
|
| 1115 |
+
.framework-label[data-framework="LTX"] {
|
| 1116 |
+
background: linear-gradient(135deg, #0369a1 0%, #22d3ee 100%);
|
| 1117 |
+
}
|
| 1118 |
+
|
| 1119 |
+
.framework-label[data-framework="Ernie"] {
|
| 1120 |
+
background: linear-gradient(135deg, #be185d 0%, #f472b6 100%);
|
| 1121 |
+
}
|
| 1122 |
+
|
| 1123 |
/* Pagination Controls */
|
| 1124 |
.pagination-controls {
|
| 1125 |
display: flex;
|
|
|
|
| 1473 |
color: #fde047;
|
| 1474 |
}
|
| 1475 |
|
| 1476 |
+
.daily-upload-model[data-type="ernie"] {
|
| 1477 |
+
background: rgba(190, 24, 93, 0.22);
|
| 1478 |
+
color: #f9a8d4;
|
| 1479 |
+
}
|
| 1480 |
+
|
| 1481 |
.daily-upload-model[data-type="sdxl"] {
|
| 1482 |
background: rgba(101, 163, 13, 0.22);
|
| 1483 |
color: #d9f99d;
|
|
|
|
| 2044 |
<span>Klein9</span>
|
| 2045 |
</label>
|
| 2046 |
|
| 2047 |
+
<label class="checkbox-label">
|
| 2048 |
+
<input
|
| 2049 |
+
id="selectedErnie"
|
| 2050 |
+
type="checkbox"
|
| 2051 |
+
onclick="javascript:searchModels(getCurrentSearchValue());"
|
| 2052 |
+
/>
|
| 2053 |
+
<span>Ernie</span>
|
| 2054 |
+
</label>
|
| 2055 |
+
|
| 2056 |
<label class="checkbox-label">
|
| 2057 |
<input
|
| 2058 |
id="selectedQwen"
|
|
|
|
| 2524 |
zimage: 'Z Image Turbo',
|
| 2525 |
zbase: 'Z Image Base',
|
| 2526 |
klein9: 'Klein9',
|
| 2527 |
+
ernie: 'Ernie',
|
| 2528 |
qwen: 'Qwen'
|
| 2529 |
};
|
| 2530 |
return baseNames[baseType] || baseType;
|
|
|
|
| 2541 |
embedding: 'embeddings',
|
| 2542 |
flux: 'flux',
|
| 2543 |
klein9: 'klein9',
|
| 2544 |
+
ernie: 'ernie',
|
| 2545 |
wan: 'wan',
|
| 2546 |
sdxl: 'sdxl',
|
| 2547 |
ltx: 'ltx',
|
|
|
|
| 2885 |
if (document.getElementById('selectedQwen').checked) selectedTypes.push('qwen');
|
| 2886 |
if (document.getElementById('selectedLtx').checked) selectedTypes.push('ltx');
|
| 2887 |
if (document.getElementById('selectedKlein9').checked) selectedTypes.push('klein9');
|
| 2888 |
+
if (document.getElementById('selectedErnie').checked) selectedTypes.push('ernie');
|
| 2889 |
return selectedTypes;
|
| 2890 |
}
|
| 2891 |
|
|
|
|
| 2928 |
embedding: 'SD Embedding',
|
| 2929 |
flux: 'Flux',
|
| 2930 |
klein9: 'Klein9',
|
| 2931 |
+
ernie: 'Ernie',
|
| 2932 |
wan: 'WAN',
|
| 2933 |
sdxl: 'SDXL',
|
| 2934 |
ltx: 'LTX',
|
|
|
|
| 3040 |
'zimage',
|
| 3041 |
'zbase',
|
| 3042 |
'klein9',
|
| 3043 |
+
'ernie',
|
| 3044 |
'qwen'
|
| 3045 |
];
|
| 3046 |
const orderIndex = new Map(modelTypeOrder.map((t, i) => [t, i]));
|
|
|
|
| 3246 |
${formatModalHFLinks(element.klein9, 'klein9', personFilenames.klein9)}
|
| 3247 |
</span>
|
| 3248 |
</div>
|
| 3249 |
+
<div class="modal-stat-row">
|
| 3250 |
+
<span class="modal-stat-label">${yesNo(element.ernie)} Ernie</span>
|
| 3251 |
+
<span class="modal-stat-value">
|
| 3252 |
+
${formatModalHFLinks(element.ernie, 'ernie', personFilenames.ernie)}
|
| 3253 |
+
</span>
|
| 3254 |
+
</div>
|
| 3255 |
<div class="modal-stat-row">
|
| 3256 |
<span class="modal-stat-label">${yesNo(element.qwen)} Qwen</span>
|
| 3257 |
<span class="modal-stat-value">
|
|
|
|
| 3411 |
embedding: presence[property].embedding,
|
| 3412 |
flux: presence[property].flux,
|
| 3413 |
klein9: presence[property].klein9,
|
| 3414 |
+
ernie: presence[property].ernie,
|
| 3415 |
wan: presence[property].wan,
|
| 3416 |
sdxl: presence[property].sdxl,
|
| 3417 |
ltx: presence[property].ltx,
|
|
|
|
| 3427 |
embeddingHFLink: presence[property]?.embeddingHFLink,
|
| 3428 |
fluxHFLink: presence[property]?.fluxHFLink,
|
| 3429 |
klein9HFLink: presence[property]?.klein9HFLink,
|
| 3430 |
+
ernieHFLink: presence[property]?.ernieHFLink,
|
| 3431 |
wanHFLink: presence[property]?.wanHFLink,
|
| 3432 |
sdxlHFLink: presence[property]?.sdxlHFLink,
|
| 3433 |
ltxHFLink: presence[property]?.ltxHFLink,
|
|
|
|
| 3442 |
const personData = uploadData.data[personKey];
|
| 3443 |
if (!personData || !personData.models) return false;
|
| 3444 |
|
| 3445 |
+
const allTypes = ['locon', 'lora', 'embedding', 'flux', 'wan', 'sdxl', 'ltx', 'qwen', 'zimage', 'zbase', 'klein9', 'ernie'];
|
| 3446 |
const typesToCheck = types && types.length > 0 ? types : allTypes;
|
| 3447 |
|
| 3448 |
for (const modelType of typesToCheck) {
|
|
|
|
| 3494 |
{ selected: document.getElementById('selectedZimage').checked, property: element.zimage },
|
| 3495 |
{ selected: document.getElementById('selectedZbase').checked, property: element.zbase },
|
| 3496 |
{ selected: document.getElementById('selectedKlein9').checked, property: element.klein9 },
|
| 3497 |
+
{ selected: document.getElementById('selectedErnie').checked, property: element.ernie },
|
| 3498 |
{ selected: document.getElementById('selectedQwen').checked, property: element.qwen },
|
| 3499 |
];
|
| 3500 |
|
|
|
|
| 3723 |
images.push(...personHFImages.Klein9);
|
| 3724 |
}
|
| 3725 |
|
| 3726 |
+
// 4. Add Ernie samples (from HF samples data)
|
| 3727 |
+
if (personHFImages.Ernie) {
|
| 3728 |
+
images.push(...personHFImages.Ernie);
|
| 3729 |
+
}
|
| 3730 |
+
|
| 3731 |
+
// 5. Add WAN samples (from HF samples data)
|
| 3732 |
if (personHFImages.WAN) {
|
| 3733 |
images.push(...personHFImages.WAN);
|
| 3734 |
}
|