|
---
|
|
license: llama3.3
|
|
base_model:
|
|
- TheSkullery/L3.1x3.3-DS-Hydroblated-R1-70B-v4.1
|
|
---
|
|
<style>
|
|
/* Base styles */
|
|
body {
|
|
font-family: 'Quicksand', sans-serif;
|
|
background: #f5e6d3;
|
|
color: #2c1810;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
/* Decorative background pattern */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
/* Diagonal lines */
|
|
repeating-linear-gradient(45deg,
|
|
rgba(139, 69, 19, 0.03) 0px,
|
|
rgba(139, 69, 19, 0.03) 1px,
|
|
transparent 1px,
|
|
transparent 10px
|
|
),
|
|
repeating-linear-gradient(-45deg,
|
|
rgba(139, 69, 19, 0.03) 0px,
|
|
rgba(139, 69, 19, 0.03) 1px,
|
|
transparent 1px,
|
|
transparent 10px
|
|
),
|
|
/* Background gradient */
|
|
linear-gradient(135deg, #f5e6d3, #fff5eb);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* Typography */
|
|
h1, h2, h3, h4 {
|
|
color: #8b4513;
|
|
text-shadow:
|
|
1px 1px 0 rgba(255, 255, 255, 0.8),
|
|
2px 2px 4px rgba(139, 69, 19, 0.2);
|
|
letter-spacing: 2px;
|
|
margin: 0 0 20px 0;
|
|
font-weight: 600;
|
|
position: relative;
|
|
padding-left: 15px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h1::before, h2::before, h3::before, h4::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
font-size: 0.8em;
|
|
transform: translateY(2px);
|
|
}
|
|
|
|
h1 { font-size: 36px; }
|
|
h2 { font-size: 28px; }
|
|
h3 { font-size: 24px; }
|
|
h4 { font-size: 20px; }
|
|
|
|
p {
|
|
line-height: 1.8;
|
|
color: #2c1810;
|
|
margin: 0 0 15px 0;
|
|
position: relative;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
p::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0.8em;
|
|
width: 8px;
|
|
height: 1px;
|
|
background: #d2691e;
|
|
transform: skewX(-20deg);
|
|
}
|
|
|
|
/* Links */
|
|
a {
|
|
color: #d2691e;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
padding: 0 5px;
|
|
}
|
|
|
|
a:hover {
|
|
color: #8b4513;
|
|
background: rgba(210, 105, 30, 0.1);
|
|
}
|
|
|
|
a::before, a::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 0;
|
|
background: #d2691e;
|
|
transition: height 0.3s ease;
|
|
}
|
|
|
|
a::before {
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
a::after {
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
a:hover::before, a:hover::after {
|
|
height: 100%;
|
|
}
|
|
|
|
/* Code elements */
|
|
pre {
|
|
background-color: rgba(255, 250, 245, 0.95);
|
|
padding: 15px;
|
|
border-radius: 10px;
|
|
overflow-x: auto;
|
|
border: 1px solid rgba(139, 69, 19, 0.2);
|
|
position: relative;
|
|
}
|
|
|
|
pre::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(45deg, transparent 48%, rgba(139, 69, 19, 0.1) 49%, rgba(139, 69, 19, 0.1) 51%, transparent 52%);
|
|
background-size: 10px 10px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
code {
|
|
font-family: 'Courier New', monospace;
|
|
color: #2c1810;
|
|
}
|
|
|
|
/* Selection color */
|
|
::selection {
|
|
background: rgba(210, 105, 30, 0.2);
|
|
color: #8b4513;
|
|
}
|
|
|
|
/* Scrollbar styling */
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: rgba(255, 250, 245, 0.95);
|
|
border: 1px solid rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #d2691e;
|
|
border: 3px solid rgba(255, 250, 245, 0.95);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #8b4513;
|
|
}
|
|
|
|
/* Focus outline */
|
|
:focus {
|
|
outline: 2px solid rgba(210, 105, 30, 0.5);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Responsive font sizes */
|
|
@media (max-width: 768px) {
|
|
body {
|
|
font-size: 14px;
|
|
}
|
|
|
|
h1 { font-size: 28px; }
|
|
h2 { font-size: 24px; }
|
|
h3 { font-size: 20px; }
|
|
h4 { font-size: 18px; }
|
|
}
|
|
|
|
/* Button styles */
|
|
.button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 12px 25px;
|
|
background: rgba(255, 250, 245, 0.95);
|
|
border: 2px solid #d2691e;
|
|
border-radius: 30px;
|
|
color: #d2691e;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
|
|
.button::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(45deg, transparent 48%, rgba(139, 69, 19, 0.1) 49%, rgba(139, 69, 19, 0.1) 51%, transparent 52%);
|
|
background-size: 10px 10px;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.button:hover {
|
|
background: #d2691e;
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.button:hover::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
.button:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Template link */
|
|
.template-link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: #d2691e;
|
|
font-weight: 500;
|
|
padding: 12px 25px;
|
|
background: rgba(255, 250, 245, 0.95);
|
|
border: 2px solid #d2691e;
|
|
border-radius: 30px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
width: fit-content;
|
|
}
|
|
|
|
|
|
.template-link::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(45deg, transparent 48%, rgba(139, 69, 19, 0.1) 49%, rgba(139, 69, 19, 0.1) 51%, transparent 52%);
|
|
background-size: 10px 10px;
|
|
opacity: 0;
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.template-link:hover {
|
|
background: #d2691e;
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.template-link:hover::after {
|
|
opacity: 1;
|
|
}
|
|
|
|
.link-arrow {
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
transform: translateY(1px);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.template-link:hover .link-arrow {
|
|
transform: translateX(3px) translateY(1px);
|
|
}
|
|
|
|
/* Template content */
|
|
.template-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
position: relative;
|
|
z-index: 1;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.template-author {
|
|
color: rgba(139, 69, 19, 0.7);
|
|
font-size: 14px;
|
|
font-style: italic;
|
|
position: relative;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
.template-author::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
font-size: 0.8em;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
/* Template item */
|
|
.template-item {
|
|
background: rgba(255, 250, 245, 0.8);
|
|
border: 1px solid rgba(139, 69, 19, 0.1);
|
|
border-radius: 20px;
|
|
padding: 15px;
|
|
margin-bottom: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.template-item:hover {
|
|
background: rgba(255, 250, 245, 0.95);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Button animations */
|
|
@keyframes buttonGlow {
|
|
0% { box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1); }
|
|
50% { box-shadow: 0 3px 15px rgba(139, 69, 19, 0.2); }
|
|
100% { box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1); }
|
|
}
|
|
|
|
.button, .template-link {
|
|
animation: buttonGlow 3s infinite;
|
|
}
|
|
|
|
/* Support buttons container */
|
|
.support-buttons {
|
|
display: flex;
|
|
gap: 15px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.button,
|
|
.template-link {
|
|
width: 100%;
|
|
justify-content: center;
|
|
}
|
|
|
|
.support-buttons {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.template-content {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
|
|
/* Base card styles */
|
|
.card {
|
|
background: rgba(255, 250, 245, 0.95);
|
|
border: 2px solid #8b4513;
|
|
border-radius: 0;
|
|
padding: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Card header */
|
|
.card-header {
|
|
background: rgba(139, 69, 19, 0.05);
|
|
margin: -20px -20px 20px -20px;
|
|
padding: 20px;
|
|
border-bottom: 2px solid #8b4513;
|
|
position: relative;
|
|
}
|
|
|
|
.card-header h3 {
|
|
margin: 0;
|
|
color: #8b4513;
|
|
}
|
|
|
|
/* Card content */
|
|
.card-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Card footer */
|
|
.card-footer {
|
|
margin: 20px -20px -20px -20px;
|
|
padding: 20px;
|
|
background: rgba(139, 69, 19, 0.05);
|
|
border-top: 1px solid rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
/* Card decorative elements */
|
|
.card::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 60px;
|
|
height: 60px;
|
|
background:
|
|
radial-gradient(circle at top right,
|
|
rgba(139, 69, 19, 0.1),
|
|
transparent 70%
|
|
);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: -2px;
|
|
background:
|
|
linear-gradient(45deg, #8b4513 0%, transparent 2%) 0 0,
|
|
linear-gradient(-45deg, #8b4513 0%, transparent 2%) 100% 0,
|
|
linear-gradient(135deg, #8b4513 0%, transparent 2%) 0 100%,
|
|
linear-gradient(-135deg, #8b4513 0%, transparent 2%) 100% 100%;
|
|
background-size: 20px 20px;
|
|
background-repeat: no-repeat;
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* Card grid */
|
|
.card-grid {
|
|
display: grid;
|
|
gap: 20px;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
}
|
|
|
|
/* Card list */
|
|
.card-list {
|
|
display: grid;
|
|
gap: 15px;
|
|
}
|
|
|
|
/* Card hover effects */
|
|
.card {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow:
|
|
0 8px 20px rgba(139, 69, 19, 0.15),
|
|
0 15px 40px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Card variations */
|
|
.card.compact {
|
|
padding: 15px;
|
|
}
|
|
|
|
.card.no-padding {
|
|
padding: 0;
|
|
}
|
|
|
|
.card.elevated {
|
|
box-shadow:
|
|
0 8px 20px rgba(139, 69, 19, 0.15),
|
|
0 15px 40px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.card-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.card {
|
|
margin: 10px 0;
|
|
}
|
|
}
|
|
|
|
/* Main container styles */
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 40px auto;
|
|
background-color: rgba(255, 250, 245, 0.97);
|
|
padding: 40px;
|
|
border: 2px solid #d2691e;
|
|
position: relative;
|
|
backdrop-filter: blur(10px);
|
|
overflow: hidden;
|
|
border-radius: 25px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
/* Section containers */
|
|
.section-container {
|
|
margin: 40px 0;
|
|
position: relative;
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 30px;
|
|
border-radius: 25px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Benchmark container */
|
|
.benchmark-container {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 25px;
|
|
box-shadow:
|
|
0 5px 15px rgba(139, 69, 19, 0.1),
|
|
0 10px 30px rgba(139, 69, 19, 0.05);
|
|
padding: 25px;
|
|
}
|
|
|
|
/* Settings grid container */
|
|
.settings-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Quantized container */
|
|
.quantized-container {
|
|
display: grid;
|
|
gap: 20px;
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 25px;
|
|
border-radius: 25px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
|
|
/* Support section container */
|
|
.support-section {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 30px;
|
|
margin-top: 40px;
|
|
position: relative;
|
|
border-radius: 25px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
|
|
/* Container decorative elements */
|
|
.container::after,
|
|
.section-container::after,
|
|
.benchmark-container::after,
|
|
.support-section::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
linear-gradient(90deg, transparent 49.5%, rgba(139, 69, 19, 0.2) 49.5%, rgba(139, 69, 19, 0.2) 50.5%, transparent 50.5%) 0 0/30px 100%,
|
|
linear-gradient(0deg, transparent 49.5%, rgba(139, 69, 19, 0.2) 49.5%, rgba(139, 69, 19, 0.2) 50.5%, transparent 50.5%) 0 0/100% 30px;
|
|
opacity: 0.3;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
/* Container hover effects */
|
|
.section-container:hover,
|
|
.benchmark-container:hover,
|
|
.quantized-container:hover,
|
|
.support-section:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.container,
|
|
.section-container,
|
|
.benchmark-container,
|
|
.support-section {
|
|
margin: 20px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.settings-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
|
|
/* Container */
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 40px 20px;
|
|
position: relative;
|
|
}
|
|
|
|
/* Header */
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
position: relative;
|
|
padding: 30px;
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
border-radius: 25px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.header h1 {
|
|
color: #8b4513;
|
|
text-shadow:
|
|
2px 2px 0 rgba(255, 255, 255, 0.8),
|
|
3px 3px 5px rgba(139, 69, 19, 0.2);
|
|
letter-spacing: 3px;
|
|
font-size: 2.5em;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Info section */
|
|
.info {
|
|
display: grid;
|
|
gap: 30px;
|
|
position: relative;
|
|
}
|
|
|
|
/* Banner image */
|
|
.info img {
|
|
width: 100%;
|
|
height: auto;
|
|
border: 2px solid #d2691e;
|
|
border-radius: 20px;
|
|
position: relative;
|
|
box-shadow:
|
|
0 5px 15px rgba(139, 69, 19, 0.2),
|
|
0 10px 30px rgba(139, 69, 19, 0.1);
|
|
filter: contrast(1.1) brightness(1.05);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.info img:hover {
|
|
transform: scale(1.01);
|
|
box-shadow:
|
|
0 8px 20px rgba(139, 69, 19, 0.2),
|
|
0 15px 40px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
/* Creator section */
|
|
.creator-section {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: -20px 0 20px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.creator-badge {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 10px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
position: relative;
|
|
border-radius: 20px;
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.creator-badge:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15);
|
|
}
|
|
|
|
.creator-badge:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
.creator-label {
|
|
color: #8b4513;
|
|
font-size: 14px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 5px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.creator-link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
color: #d2691e;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.creator-name {
|
|
position: relative;
|
|
}
|
|
|
|
.creator-arrow {
|
|
font-size: 18px;
|
|
line-height: 1;
|
|
transform: translateY(1px);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.creator-link:hover .creator-arrow {
|
|
transform: translateX(3px) translateY(1px);
|
|
}
|
|
|
|
/* Details element styling */
|
|
details {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
summary {
|
|
cursor: pointer;
|
|
color: #8b4513;
|
|
font-weight: 500;
|
|
margin-bottom: 15px;
|
|
position: relative;
|
|
padding: 10px 20px;
|
|
background: rgba(255, 250, 245, 0.95);
|
|
border: 1px solid #d2691e;
|
|
border-radius: 15px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
summary:hover {
|
|
background: rgba(210, 105, 30, 0.1);
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
summary::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
transform: translateX(-20px);
|
|
color: #d2691e;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
summary:hover::before {
|
|
transform: translateX(-15px);
|
|
}
|
|
|
|
/* Special Thanks Section */
|
|
.special-thanks {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 25px;
|
|
margin: 20px 0;
|
|
position: relative;
|
|
border-radius: 20px;
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.special-thanks h3 {
|
|
color: #8b4513;
|
|
margin-bottom: 20px;
|
|
position: relative;
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.thanks-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.thanks-list li {
|
|
color: #2c1810;
|
|
padding: 10px 15px;
|
|
position: relative;
|
|
background: rgba(255, 255, 255, 0.7);
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(139, 69, 19, 0.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.thanks-list li:hover {
|
|
transform: translateX(5px);
|
|
background: rgba(255, 255, 255, 0.9);
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.thanks-list li strong {
|
|
color: #d2691e;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.thanks-note {
|
|
margin-top: 20px;
|
|
color: rgba(44, 24, 16, 0.7);
|
|
font-style: italic;
|
|
font-size: 0.9em;
|
|
text-align: center;
|
|
padding: 10px;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.container {
|
|
padding: 20px;
|
|
}
|
|
|
|
.header {
|
|
padding: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.creator-section {
|
|
justify-content: center;
|
|
}
|
|
|
|
.special-thanks {
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
/* Metrics section */
|
|
.metrics-section {
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
padding: 25px;
|
|
border-radius: 20px;
|
|
box-shadow:
|
|
0 5px 15px rgba(139, 69, 19, 0.1),
|
|
0 10px 30px rgba(139, 69, 19, 0.05);
|
|
}
|
|
|
|
/* Core metrics grid */
|
|
.core-metrics-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 20px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.info-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Metric box */
|
|
.metric-box {
|
|
background: white;
|
|
border: 2px solid #d2691e;
|
|
border-radius: 15px;
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.metric-box:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15);
|
|
}
|
|
|
|
.metric-box .label {
|
|
color: #8b4513;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 5px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.metric-box .value {
|
|
color: #d2691e;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
text-shadow:
|
|
0 0 10px rgba(139, 69, 19, 0.3),
|
|
0 0 20px rgba(139, 69, 19, 0.2);
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
/* Progress metrics */
|
|
.progress-metrics {
|
|
display: grid;
|
|
gap: 15px;
|
|
padding: 20px;
|
|
background: white;
|
|
border: 2px solid #d2691e;
|
|
border-radius: 15px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 5px 15px rgba(139, 69, 19, 0.1),
|
|
0 10px 30px rgba(139, 69, 19, 0.05);
|
|
}
|
|
|
|
.progress-metric {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.progress-label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
color: #8b4513;
|
|
font-size: 14px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 5px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.progress-value {
|
|
color: #d2691e;
|
|
font-weight: 600;
|
|
text-shadow:
|
|
0 0 5px rgba(139, 69, 19, 0.3),
|
|
0 0 10px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
/* Progress bars */
|
|
.progress-bar {
|
|
height: 8px;
|
|
background: rgba(139, 69, 19, 0.1);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
border: 1px solid rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.progress-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #d2691e, #e08143);
|
|
border-radius: 4px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 0 10px rgba(139, 69, 19, 0.2),
|
|
0 0 20px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.progress-fill::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg,
|
|
rgba(255, 255, 255, 0.1) 0%,
|
|
rgba(255, 255, 255, 0.1) 40%,
|
|
rgba(255, 255, 255, 0.3) 50%,
|
|
rgba(255, 255, 255, 0.1) 60%,
|
|
rgba(255, 255, 255, 0.1) 100%
|
|
);
|
|
background-size: 300% 100%;
|
|
animation: shimmer 2s infinite;
|
|
}
|
|
|
|
/* Split progress bars */
|
|
.progress-metric.split .progress-label {
|
|
justify-content: space-between;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.progress-bar.split {
|
|
display: flex;
|
|
background: rgba(139, 69, 19, 0.1);
|
|
position: relative;
|
|
justify-content: center;
|
|
}
|
|
|
|
.progress-bar.split::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 2px;
|
|
height: 100%;
|
|
background: rgba(139, 69, 19, 0.3);
|
|
z-index: 2;
|
|
box-shadow: 0 0 10px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.progress-fill-left,
|
|
.progress-fill-right {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #d2691e, #e08143);
|
|
position: relative;
|
|
width: 50%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-fill-left {
|
|
border-radius: 4px 0 0 4px;
|
|
margin-right: 1px;
|
|
transform-origin: right;
|
|
transform: scaleX(var(--scale, 0));
|
|
}
|
|
|
|
.progress-fill-right {
|
|
border-radius: 0 4px 4px 0;
|
|
margin-left: 1px;
|
|
transform-origin: left;
|
|
transform: scaleX(var(--scale, 0));
|
|
}
|
|
|
|
/* Benchmark container */
|
|
.benchmark-container {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
border-radius: 20px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 5px 15px rgba(139, 69, 19, 0.1),
|
|
0 10px 30px rgba(139, 69, 19, 0.05);
|
|
padding: 25px;
|
|
}
|
|
|
|
/* Benchmark notification */
|
|
.benchmark-notification {
|
|
background: white;
|
|
border: 2px solid #d2691e;
|
|
padding: 15px;
|
|
margin-bottom: 20px;
|
|
border-radius: 15px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 3px 10px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.notification-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.notification-icon {
|
|
font-size: 20px;
|
|
color: #d2691e;
|
|
text-shadow:
|
|
0 0 10px rgba(139, 69, 19, 0.3),
|
|
0 0 20px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.notification-text {
|
|
color: #8b4513;
|
|
font-size: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
text-shadow: 0 0 5px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
.benchmark-link {
|
|
color: #d2691e;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
text-shadow:
|
|
0 0 5px rgba(139, 69, 19, 0.3),
|
|
0 0 10px rgba(139, 69, 19, 0.2);
|
|
position: relative;
|
|
padding: 2px 10px;
|
|
border: 1px solid #d2691e;
|
|
border-radius: 12px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.benchmark-link:hover {
|
|
background: #d2691e;
|
|
color: white;
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes shimmer {
|
|
0% { background-position: 200% 0; }
|
|
100% { background-position: -200% 0; }
|
|
}
|
|
|
|
@keyframes progressPulse {
|
|
0% { transform: scaleY(1); }
|
|
50% { transform: scaleY(1.1); }
|
|
100% { transform: scaleY(1); }
|
|
}
|
|
|
|
.progress-fill {
|
|
animation: progressPulse 2s infinite;
|
|
transform-origin: center;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.core-metrics-grid,
|
|
.info-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.metrics-section {
|
|
padding: 20px;
|
|
}
|
|
|
|
.progress-metrics {
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
/* Model info section */
|
|
.model-info {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.model-info h2 {
|
|
color: #8b4513;
|
|
font-size: 2em;
|
|
margin-bottom: 30px;
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.model-info h2::before {
|
|
content: 'β';
|
|
color: #d2691e;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
/* Info card */
|
|
.info-card {
|
|
background: rgba(255, 250, 245, 0.98);
|
|
border: 2px solid #d2691e;
|
|
border-radius: 25px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
box-shadow: 0 5px 20px rgba(139, 69, 19, 0.15);
|
|
}
|
|
|
|
/* Info header */
|
|
.info-header {
|
|
background: linear-gradient(45deg, rgba(139, 69, 19, 0.05), transparent);
|
|
padding: 30px;
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
.info-header h3 {
|
|
color: #8b4513;
|
|
font-size: 2em;
|
|
margin-bottom: 20px;
|
|
text-shadow:
|
|
1px 1px 0 rgba(255, 255, 255, 0.8),
|
|
2px 2px 4px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
/* Model tags */
|
|
.model-tags {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.model-tag {
|
|
background: white;
|
|
color: #d2691e;
|
|
padding: 8px 20px;
|
|
border: 2px solid #d2691e;
|
|
border-radius: 20px;
|
|
font-size: 0.9em;
|
|
font-weight: 500;
|
|
letter-spacing: 0.5px;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.model-tag:hover {
|
|
transform: translateY(-2px);
|
|
background: #d2691e;
|
|
color: white;
|
|
box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
|
|
}
|
|
|
|
/* Model composition */
|
|
.model-composition {
|
|
padding: 30px;
|
|
background: white;
|
|
position: relative;
|
|
}
|
|
|
|
.model-composition h4 {
|
|
color: #8b4513;
|
|
font-size: 1.5em;
|
|
margin-bottom: 25px;
|
|
padding-left: 25px;
|
|
position: relative;
|
|
}
|
|
|
|
.model-composition h4::before {
|
|
content: 'β
';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
}
|
|
|
|
.composition-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: grid;
|
|
gap: 15px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.composition-list li {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
padding: 15px 20px;
|
|
background: rgba(255, 250, 245, 0.8);
|
|
border: 1px solid rgba(139, 69, 19, 0.1);
|
|
border-radius: 15px;
|
|
transition: all 0.3s ease;
|
|
/* Removed: animation, opacity, transform, and animation-delay */
|
|
}
|
|
|
|
.composition-list li:hover {
|
|
transform: translateX(10px);
|
|
background: rgba(255, 250, 245, 0.95);
|
|
box-shadow: 0 3px 12px rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.model-component {
|
|
color: #d2691e;
|
|
font-weight: 600;
|
|
min-width: 140px;
|
|
position: relative;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.model-component::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.model-component a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.model-component a:hover {
|
|
color: #8b4513;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Model description */
|
|
.model-description {
|
|
padding: 30px;
|
|
background: linear-gradient(-45deg, rgba(139, 69, 19, 0.05), transparent);
|
|
border-top: 2px solid rgba(139, 69, 19, 0.1);
|
|
}
|
|
|
|
.model-description h4 {
|
|
color: #8b4513;
|
|
font-size: 1.4em;
|
|
margin: 25px 0 15px;
|
|
padding-left: 25px;
|
|
position: relative;
|
|
}
|
|
|
|
.model-description h4:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.model-description h4::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.model-description p {
|
|
color: #2c1810;
|
|
line-height: 1.8;
|
|
margin-bottom: 20px;
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.model-description ul {
|
|
list-style: none;
|
|
padding-left: 25px;
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.model-description ul li {
|
|
color: #2c1810;
|
|
margin-bottom: 12px;
|
|
padding-left: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.model-description ul li::before {
|
|
content: 'β';
|
|
position: absolute;
|
|
left: 0;
|
|
color: #d2691e;
|
|
}
|
|
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.info-header {
|
|
padding: 20px;
|
|
}
|
|
|
|
.model-tags {
|
|
gap: 8px;
|
|
}
|
|
|
|
.model-tag {
|
|
padding: 6px 15px;
|
|
font-size: 0.85em;
|
|
}
|
|
|
|
.model-composition,
|
|
.model-description {
|
|
padding: 20px;
|
|
}
|
|
|
|
.composition-list li {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
}
|
|
|
|
.model-component {
|
|
min-width: auto;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>L3.3-Cu-Mai-R1-70b</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>L3.3-Cu-Mai-R1-70b</h1>
|
|
</div>
|
|
<div class="info">
|
|
<img src="https://cdn-uploads.huggingface.co/production/uploads/64545af5ec40bbbd01242ca6/i3DSObqtHDERbQeh18Uf0.png" alt="Model banner">
|
|
<div class="creator-section">
|
|
<div class="creator-badge" style="display: flex; align-items: center; gap: 1rem;">
|
|
<div class="creator-info">
|
|
<span class="creator-label">Created by</span>
|
|
<a href="https://huggingface.co/Steelskull" target="_blank" class="creator-link">
|
|
<span class="creator-name">SteelSkull</span>
|
|
<span class="creator-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
<a href="https://ko-fi.com/Y8Y0AO2XE" target="_blank" class="button" style="margin: 0; padding: 0.5rem 1rem;">
|
|
Support on Ko-fi
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="model-info">
|
|
<h2>-Model Information</h2>
|
|
<div class="info-card">
|
|
<div class="info-header">
|
|
<h3>L3.3-Cu-Mai-R1-70b</h3>
|
|
<div class="model-tags">
|
|
<span class="model-tag">L3.3 = Llama 3.3</span>
|
|
<span class="model-tag">SCE Merge</span>
|
|
<span class="model-tag">R1 = Deepseek R1</span>
|
|
<span class="model-tag">70b Parameters</span>
|
|
<span class="model-tag">v0.5.A</span>
|
|
</div>
|
|
</div>
|
|
<div class="model-composition">
|
|
<h4>Model Composition</h4>
|
|
<ul class="composition-list">
|
|
<li><span class="model-component base-model"><a href="https://huggingface.co/TheSkullery/L3.1x3.3-DS-Hydroblated-R1-70B-v4.1" target="_blank">L3.1x3.3-DS-Hydroblated-R1-70B-v4.1</a></span> Base model</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0" target="_blank">EVA-LLaMA-3.33</a></span> Core capabilities</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/Sao10K/L3.3-70B-Euryale-v2.3" target="_blank">Euryale-v2.3</a></span> Enhanced reasoning</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/Sao10K/70B-L3.3-Cirrus-x1" target="_blank">Cirrus-x1</a></span> Improved coherence</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/Sao10K/L3.1-70B-Hanami-x1" target="_blank">Hanami-x1</a></span> Balanced responses</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/TheDrummer/Anubis-70B-v1" target="_blank">Anubis-v1</a></span> Enhanced detail</li>
|
|
<li><span class="model-component"><a href="https://huggingface.co/SicariusSicariiStuff/Negative_LLAMA_70B" target="_blank">Negative_LLAMA</a></span> Reduced bias</li>
|
|
</ul>
|
|
</div>
|
|
<div class="model-description">
|
|
<h4>Model Info</h4>
|
|
<p>Cu-Mai, a play on San-Mai for Copper-Steel Damascus, represents a significant evolution in the three-part model series alongside San-Mai (OG) and Mokume-Gane. While maintaining the grounded and reliable nature of San-Mai, Cu-Mai introduces its own distinct "flavor" in terms of prose and overall vibe. The model demonstrates strong adherence to prompts while offering a unique creative expression.</p>
|
|
<h4>Technical Architecture</h4>
|
|
<p>L3.3-Cu-Mai-R1-70b integrates specialized components through the SCE merge method:</p>
|
|
<ul>
|
|
<li>EVA and EURYALE foundations for creative expression and scene comprehension</li>
|
|
<li>Cirrus and Hanami elements for enhanced reasoning capabilities</li>
|
|
<li>Anubis components for detailed scene description</li>
|
|
<li>Negative_LLAMA integration for balanced perspective and response</li>
|
|
</ul>
|
|
<h4>User Experience & Capabilities</h4>
|
|
<p>Users consistently praise Cu-Mai for its:</p>
|
|
<ul>
|
|
<li>Exceptional prose quality and natural dialogue flow</li>
|
|
<li>Strong adherence to prompts and creative expression</li>
|
|
<li>Improved coherency and reduced repetition</li>
|
|
<li>Performance on par with the original model</li>
|
|
</ul>
|
|
<p>While some users note slightly reduced intelligence compared to the original, this trade-off is generally viewed as minimal and doesn't significantly impact the overall experience. The model's reasoning capabilities can be effectively activated through proper prompting techniques.</p>
|
|
<h4>Model Series Context</h4>
|
|
<p>Cu-Mai (Version A) is part of a three-model series:</p>
|
|
<ul>
|
|
<li>L3.3-San-Mai-R1-70b (OG model) - The original foundation</li>
|
|
<li>L3.3-Cu-Mai-R1-70b (Version A) - Enhanced creative expression</li>
|
|
<li>L3.3-Mokume-Gane-R1-70b (Version C) - Distinct variation with unique characteristics</li>
|
|
</ul>
|
|
<h4>Base Architecture</h4>
|
|
<p>At its core, L3.3-Cu-Mai-R1-70b utilizes the entirely custom Hydroblated-R1 base model, specifically engineered for stability, enhanced reasoning, and performance. The SCE merge method, with settings finely tuned based on community feedback from evaluations of Experiment-Model-Ver-0.5, Experiment-Model-Ver-0.5.A, Experiment-Model-Ver-0.5.B, Experiment-Model-Ver-0.5.C, Experiment-Model-Ver-0.5.D, L3.3-Exp-Nevoria-R1-70b-v0.1 and L3.3-Exp-Nevoria-70b-v0.1, enables precise and effective component integration while maintaining model coherence and reliability.</p>
|
|
</div>
|
|
</div>
|
|
<h2>UGI-Benchmark Results:</h2>
|
|
<div class="benchmark-container">
|
|
<div class="benchmark-notification">
|
|
<div class="notification-content">
|
|
<span class="notification-icon">π</span>
|
|
<span class="notification-text">
|
|
Latest benchmark results as of 02/20/2025.
|
|
<a href="https://huggingface.co/spaces/DontPlanToEnd/UGI-Leaderboard" target="_blank" class="benchmark-link">
|
|
View Full Leaderboard β
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="metrics-section">
|
|
<h3>Core Metrics</h3>
|
|
<div class="core-metrics-grid">
|
|
<div class="metric-box">
|
|
<span class="label">UGI Score</span>
|
|
<span class="value">45.01</span>
|
|
</div>
|
|
<div class="metric-box">
|
|
<span class="label">Willingness Score</span>
|
|
<span class="value">4.5/10</span>
|
|
</div>
|
|
<div class="metric-box">
|
|
<span class="label">Natural Intelligence</span>
|
|
<span class="value">48.97</span>
|
|
</div>
|
|
<div class="metric-box">
|
|
<span class="label">Coding Ability</span>
|
|
<span class="value">22</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metrics-section">
|
|
<h3>Model Information</h3>
|
|
<div class="info-grid">
|
|
<div class="metric-box">
|
|
<span class="label">Political Lean</span>
|
|
<span class="value">-9.1%</span>
|
|
</div>
|
|
<div class="metric-box">
|
|
<span class="label">Ideology</span>
|
|
<span class="value">Liberalism</span>
|
|
</div>
|
|
<div class="metric-box">
|
|
<span class="label">Parameters</span>
|
|
<span class="value">70B</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="metrics-section">
|
|
<details>
|
|
<summary>Aggregated Scores</summary>
|
|
<div class="progress-metrics">
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>Diplomacy</span>
|
|
<span class="progress-value">62.2%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 62.2%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>Government</span>
|
|
<span class="progress-value">44.6%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 44.6%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>Economy</span>
|
|
<span class="progress-value">43.1%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 43.1%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>Society</span>
|
|
<span class="progress-value">60.7%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 60.7%"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</details>
|
|
</div>
|
|
<div class="metrics-section">
|
|
<details>
|
|
<summary>Individual Scores</summary>
|
|
<div class="progress-metrics">
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Federal</span>
|
|
<span class="progress-value">46.0%</span>
|
|
<span>Unitary</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.460"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.540"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Democratic</span>
|
|
<span class="progress-value">67.5%</span>
|
|
<span>Autocratic</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.675"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.325"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Security</span>
|
|
<span class="progress-value">47.5%</span>
|
|
<span>Freedom</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.475"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.525"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Nationalism</span>
|
|
<span class="progress-value">39.0%</span>
|
|
<span>Int'l</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.390"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.610"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Militarist</span>
|
|
<span class="progress-value">32.9%</span>
|
|
<span>Pacifist</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.329"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.671"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Assimilationist</span>
|
|
<span class="progress-value">41.5%</span>
|
|
<span>Multiculturalist</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.415"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.585"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Collectivize</span>
|
|
<span class="progress-value">43.3%</span>
|
|
<span>Privatize</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.433"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.567"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Planned</span>
|
|
<span class="progress-value">42.3%</span>
|
|
<span>LaissezFaire</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.423"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.577"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Isolationism</span>
|
|
<span class="progress-value">43.8%</span>
|
|
<span>Globalism</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.438"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.562"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Irreligious</span>
|
|
<span class="progress-value">57.9%</span>
|
|
<span>Religious</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.579"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.421"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Progressive</span>
|
|
<span class="progress-value">59.8%</span>
|
|
<span>Traditional</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.598"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.402"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric split">
|
|
<div class="progress-label">
|
|
<span>Acceleration</span>
|
|
<span class="progress-value">64.4%</span>
|
|
<span>Bioconservative</span>
|
|
</div>
|
|
<div class="progress-bar split">
|
|
<div class="progress-fill-left" style="--scale: 0.644"></div>
|
|
<div class="progress-fill-right" style="--scale: 0.356"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</details>
|
|
</div>
|
|
</div>
|
|
<!-- Open LLM-Benchmark Results - TO BE UPDATED -->
|
|
<!--<h2>Open LLM-Benchmark Results:</h2>
|
|
<div class="benchmark-container">
|
|
<div class="benchmark-notification">
|
|
<div class="notification-content">
|
|
<span class="notification-text">
|
|
Average Score: 43.68%
|
|
<a href="https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard#/?rankingMode=dynamic" target="_blank" class="benchmark-link">
|
|
View Full Leaderboard β
|
|
</a>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metrics">
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>IFEval</span>
|
|
<span class="progress-value">60.24%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 60.24%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>BBH</span>
|
|
<span class="progress-value">56.17%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 56.17%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>MATH</span>
|
|
<span class="progress-value">46.68%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 46.68%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>GPQA</span>
|
|
<span class="progress-value">29.19%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 29.19%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>MUSR</span>
|
|
<span class="progress-value">20.19%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 20.19%"></div>
|
|
</div>
|
|
</div>
|
|
<div class="progress-metric">
|
|
<div class="progress-label">
|
|
<span>MMLU-Pro</span>
|
|
<span class="progress-value">49.59%</span>
|
|
</div>
|
|
<div class="progress-bar">
|
|
<div class="progress-fill" style="width: 49.59%"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
<div class="component-section" id="settings">
|
|
<div class="section-container">
|
|
<h2>Recommended Sampler Settings: <strong> By @Geechan</strong></h2>
|
|
<div class="settings-grid">
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>Static Temperature:</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="setting-item highlight">
|
|
<span class="setting-value">1 - 1.05</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>Min P</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="setting-item highlight">
|
|
<span class="setting-value">0.02</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>DRY Settings: (optional)</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="setting-item">
|
|
<span class="setting-label">Multiplier</span>
|
|
<span class="setting-value">0.8</span>
|
|
</div>
|
|
<div class="setting-item">
|
|
<span class="setting-label">Base</span>
|
|
<span class="setting-value">1.75</span>
|
|
</div>
|
|
<div class="setting-item">
|
|
<span class="setting-label">Length</span>
|
|
<span class="setting-value">4</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="section-container">
|
|
<h2>Recommended Templates & Prompts</h2>
|
|
<div class="template-card">
|
|
<div class="template-item">
|
|
<div class="template-content">
|
|
<a href="https://huggingface.co/Konnect1221/Methception-Llamaception-SillyTavern-Preset" target="_blank" class="template-link">
|
|
LLam@ception
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
<span class="template-author">by @.konnect</span>
|
|
</div>
|
|
</div>
|
|
<div class="template-item">
|
|
<div class="template-content">
|
|
<a href="https://huggingface.co/Steelskull/L3.3-San-Mai-R1-70b/blob/main/LeCeption-XML-V2-Thinking.json" target="_blank" class="template-link">
|
|
LeCeption
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
<span class="template-author">by @Steel</span> > A completly revamped XML version of Llam@ception 1.5.2 with stepped thinking and Reasoning added
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>LECEPTION REASONING CONFIGURATION:</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="settings-grid">
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>Start Reply With:</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="setting-item">
|
|
<p>'<span style="color: #ff6b6b"><think></span> OK, as an objective, detached narrative analyst, let's think this through carefully:'</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="settings-card">
|
|
<div class="settings-header">
|
|
<h3>Reasoning Formatting (no spaces):</h3>
|
|
</div>
|
|
<div class="settings-content">
|
|
<div class="setting-item">
|
|
<span class="setting-label">Prefix:</span>
|
|
<span class="setting-value">'<span style="color: #ff6b6b"><think></span>'</span>
|
|
</div>
|
|
<div class="setting-item">
|
|
<span class="setting-label">Suffix:</span>
|
|
<span class="setting-value">'<span style="color: #ff6b6b"></think></span>'</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--<div class="section-container">
|
|
<h2>Quantized Versions</h2>
|
|
<div class="quantized-container">
|
|
<div class="quantized-section">
|
|
<h3>GGUF Quantizations</h3>
|
|
<div class="quantized-items">
|
|
<div class="quantized-item">
|
|
<span class="author">bartowski</span>
|
|
<a href="https://huggingface.co/bartowski/Steelskull_L3.3-Damascus-R1-GGUF" target="_blank">
|
|
Combined-GGUF
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
<div class="quantized-item">
|
|
<span class="author">mradermacher</span>
|
|
<div class="multi-links">
|
|
<a href="https://huggingface.co/mradermacher/L3.3-Damascus-R1-GGUF" target="_blank">
|
|
GGUF
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
<span class="separator">//</span>
|
|
<a href="https://huggingface.co/mradermacher/L3.3-Damascus-R1-i1-GGUF" target="_blank">
|
|
Imat-GGUF
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="quantized-section">
|
|
<h3>EXL2 Quantizations</h3>
|
|
<div class="quantized-items">
|
|
<div class="quantized-item">
|
|
<span class="author">ReadyArt</span>
|
|
<div class="multi-links">
|
|
<a href="https://huggingface.co/ReadyArt/L3.3-Damascus-R1_EXl2_8.0bpw_H8" target="_blank">
|
|
8.0BPW-EXL2
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
<span class="separator">//</span>
|
|
<a href="https://huggingface.co/ReadyArt/L3.3-Damascus-R1_EXl2_6.65bpw_H8" target="_blank">
|
|
6.65BPW-EXL2
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="quantized-item">
|
|
<span class="author">Darkhn</span>
|
|
<a href="https://huggingface.co/Darkhn/Steelskull-L3.3-Damascus-R1-6.0bpw-h8-exl2" target="_blank">
|
|
6.0BPW-EXL2
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="quantized-section">
|
|
<h3>FP8 Dynamic</h3>
|
|
<div class="quantized-items">
|
|
<div class="quantized-item">
|
|
<span class="author">yeyaowei</span>
|
|
<a href="https://huggingface.co/yeyaowei/L3.3-Damascus-R1-FP8-Dynamic" target="_blank">
|
|
FP8-Dynamic
|
|
<span class="link-arrow">β</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>-->
|
|
<div class="support-section">
|
|
<h2>-Support & Community:</h2>
|
|
<div class="support-buttons">
|
|
<a href="https://ko-fi.com/Y8Y0AO2XE" target="_blank" class="button">
|
|
Support on Ko-fi
|
|
</a>
|
|
<a href="https://discord.gg/4tCngSm3qZ" target="_blank" class="button">
|
|
Join Discord
|
|
</a>
|
|
</div>
|
|
<div class="special-thanks">
|
|
<h3>Special Thanks</h3>
|
|
<ul class="thanks-list">
|
|
<li><strong>@Geechan</strong> for feedback and sampler settings</li>
|
|
<li><strong>@Konnect</strong> for their feedback and templates</li>
|
|
<li><strong>@Kistara</strong> for their feedback and help with the model mascot design</li>
|
|
<li><strong>@Thana Alt</strong> for their feedback and Quants</li>
|
|
<li><strong>@Lightning_missile</strong> for their feedback</li>
|
|
<li><strong>The Arli community</strong> for feedback and testers</li>
|
|
<li><strong>The BeaverAI communty</strong> for feedback and testers</li>
|
|
</ul>
|
|
<p class="thanks-note">I wish I could add everyone but im pretty sure it would be as long as the card!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|