ReadyArt/Brisk-Evolution-12B-v0.1
<style> body { font-family: 'Quicksand', sans-serif; background-color: #222; / Lighter dark background / color: #e0e0e0; / Off-white text for better contrast / text-shadow: 0 0 3px rgba(0, 0, 0, 0.5); / Softer text shadow / margin: 0; padding: 20px; transition: all 0.5s ease; } @media (prefers-color-scheme: light) { body { background: linear-gradient(135deg, #fff 0%, #ddd 100%); color: #1a1a1a; text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); } } / Container / .container { min-width: 100%; margin: 0 auto; max-width: 1200px; background: rgba(40, 40, 40, 0.95); / Lighter container background / border-radius: 12px; padding: 30px; box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), 0 0 50px rgba(60, 60, 60, 0.3); / Softer box shadow / border: 1px solid rgba(80, 80, 80, 0.3); position: relative; overflow: hidden; } .container::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border: 1px solid rgba(180, 180, 180, 0.3); border-radius: 12px; pointer-events: none; animation: borderGlow 3s ease-in-out infinite alternate; } @keyframes borderGlow { 0% { box-shadow: 0 0 10px rgba(120, 120, 120, 0.4); border-color: rgba(180, 180, 180, 0.3); } 50% { box-shadow: 0 0 20px rgba(200, 200, 200, 0.5); border-color: rgba(210, 210, 210, 0.5); } 100% { box-shadow: 0 0 10px rgba(120, 120, 120, 0.4); border-color: rgba(180, 180, 180, 0.3); } } / Header / .header { text-align: center; margin-bottom: 30px; position: relative; } .header::after { content: ''; position: absolute; bottom: -15px; left: 25%; right: 25%; height: 1px; background: linear-gradient(90deg, transparent, rgba(200, 200, 200, 0.6), transparent); animation: scanline 8s linear infinite; display: block; / Show the scanline / } @keyframes scanline { 0% { background-position: -100% 0; } 100% { background-position: 200% 0; } } .model-name { color: #d0d0d0; / Lighter text / font-size: 2.5em; text-shadow: 0 0 15px rgba(80, 80, 80, 0.5); / Softer glow / margin: 0; letter-spacing: -1px; animation: textGlow 4s ease-in-out infinite alternate; } @keyframes textGlow { 0% { text-shadow: 0 0 15px rgba(80, 80, 80, 0.5); } 50% { text-shadow: 0 0 25px rgba(200, 200, 200, 0.6); } 100% { text-shadow: 0 0 15px rgba(80, 80, 80, 0.5); } } .subtitle { color: #c0c0c0; / Lighter gray subtitle / font-size: 1.2em; margin-top: 10px; animation: subtitleFade 6s ease-in-out infinite; } @keyframes subtitleFade { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } } / Waifu Container / .waifu-container { margin: 20px -30px; width: calc(100% + 60px); overflow: hidden; border-radius: 8px; border: 1px solid rgba(60, 60, 60, 0.4); position: relative; } .waifu-container::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(120, 120, 120, 0.15) 0%, transparent 20%, transparent 80%, rgba(200, 200, 200, 0.15) 100%); pointer-events: none; animation: gradientSlide 10s linear infinite; } @keyframes gradientSlide { 0% { background-position: 0% 0%; } 100% { background-position: 100% 100%; } } .waifu-img { width: 100%; height: auto; border-radius: 0; border: none; box-shadow: 0 0 50px rgba(0, 0, 0, 0.25); / Softer shadow / transition: transform 0.5s ease; } .waifu-img:hover { transform: scale(1.05); } / Section / .section { color: #d0d0d0; / Lighter section text / margin: 25px 0; padding: 20px; background: rgba(50, 50, 50, 0.9); / Lighter section background / border-radius: 8px; border: 1px solid rgba(120, 120, 120, 0.15); position: relative; transition: all 0.3s ease; box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); / Softer shadow / } .section:hover { border-color: rgba(200, 200, 200, 0.4); box-shadow: 0 0 20px rgba(100, 100, 100, 0.4); } .section::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border: 1px solid rgba(160, 160, 160, 0.2); border-radius: 8px; pointer-events: none; animation: sectionPulse 5s ease-in-out infinite; } @keyframes sectionPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 0.3; } } .section-title { color: #ffffff; / White title / font-size: 1.8em; margin-top: 0; text-shadow: 0 0 10px rgba(50, 50, 50, 0.3); position: relative; display: inline-block; } .section-title::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, rgba(160, 160, 160, 0.6), rgba(210, 210, 210, 0.6)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; } .section:hover .section-title::after { transform: scaleX(1); } / Links and Buttons / .quant-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 20px 0; } .link-card { padding: 15px; background: rgba(70, 70, 70, 0.95); / Lighter card background / border-radius: 8px; transition: all 0.3s ease; border: 1px solid rgba(110, 110, 110, 0.2); position: relative; overflow: hidden; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .link-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, rgba(160, 160, 160, 0.5), rgba(200, 200, 200, 0.5)); animation: cardScan 4s linear infinite; } @keyframes cardScan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } .link-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(80, 80, 80, 0.4); border-color: rgba(200, 200, 200, 0.5); } .link-card h3 { margin-top: 0; color: #cccccc !important; } .link-button { display: inline-flex; align-items: center; background: rgba(110, 110, 110, 0.2); color: #e0e0e0 !important; padding: 10px 20px; border-radius: 6px; text-decoration: none; border: 1px solid rgba(150, 150, 150, 0.4); margin: 5px 0; transition: all 0.3s ease; font-size: 1em; position: relative; overflow: hidden; } .link-button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(210, 210, 210, 0.3), transparent); transition: all 0.5s ease; } .link-button:hover { background: rgba(130, 130, 130, 0.3); border-color: rgba(200, 200, 200, 0.7); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(100, 100, 100, 0.4); } .link-button:hover::before { left: 100%; } .link-button::after { content: '→'; margin-left: 10px; opacity: 0.8; transition: all 0.3s ease; } .link-button:hover::after { transform: translateX(5px); opacity: 1; } / Disclaimer and Badges / .disclaimer { color: #c0c0c0; border-left: 3px solid #c0c0c0; padding-left: 15px; margin: 20px 0; position: relative; } .disclaimer::before { content: '⚠️'; position: absolute; left: -10px; top: 0; transform: translateX(-100%); animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } } .badge { display: inline-block; padding: 5px 10px; border-radius: 5px; background: rgba(160, 160, 160, 0.15); border: 1px solid #b0b0b0; margin: 5px; font-size: 0.9em; animation: badgePulse 3s ease-in-out infinite; } @keyframes badgePulse { 0%, 100% { box-shadow: 0 0 10px rgba(160, 160, 160, 0.4); } 50% { box-shadow: 0 0 20px rgba(200, 200, 200, 0.6); } } / Color rules / .section p, .section ul li, .section > p > strong { color: #c0c0c0 !important; } .section ul li strong { color: #c0c0c0 !important; } / Light mode adjustments / @media (prefers-color-scheme: light) { .container { background: rgba(220, 220, 220, 0.95); border-color: rgba(240, 240, 240, 0.5); } .model-name, .section-title, .subtitle { color: #444444; text-shadow: 0 0 10px rgba(100, 100, 100, 0.5); } .section { background: rgba(240, 240, 240, 0.9); border-color: rgba(220, 220, 220, 0.4); color: #1a1a1a; } .section p, .section ul li, .section > p > strong { color: #666666 !important; } .section ul li strong { color: #666666 !important; } .link-card { background: rgba(240, 240, 240, 0.95); border-color: rgba(220, 220, 220, 0.4); } .link-card h3 { color: #444444 !important; } .link-button { background: rgba(220, 220, 220, 0.2); color: #444444 !important; border-color: rgba(240, 240, 240, 0.5); } .link-button:hover { background: rgba(240, 240, 240, 0.4); border-color: rgba(250, 250, 250, 0.8); } .disclaimer { color: #666666; border-color: #666666; } .badge { border-color: #666666; background: rgba(240, 240, 240, 0.2); } } / Interactive features / .remember-this { position: relative; } .remember-this::after { content: 'Scanning your face through facial recognition...'; position: absolute; bottom: -20px; right: 0; font-size: 0.8em; color: #c0c0c0; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .remember-this:hover::after { opacity: 0.9; transition-delay: 1s; } .shifty-section { transition: transform 0.1s ease; } .shifty-section:hover { transform: translateX(15px); } .shifty-section::before { content: 'The white van is onto you. Get out now.'; position: absolute; top: -25px; left: 10px; font-size: 0.7em; color: #c0c0c0; opacity: 0.9; transition: opacity 3s ease; pointer-events: none; } .shifty-section:hover::before { opacity: 0; transition-delay: 5s; } footer { text-align: center; margin-top: 40px; position: relative; } footer:hover .hidden-message { opacity: 0; } .hidden-message { position: absolute; bottom: -30px; width: 100%; text-align: center; font-size: 0.8em; color: #c0c0c0; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; } .flash-warning { position: fixed; top: 20px; right: 20px; background: rgba(160, 160, 160, 0.3); padding: 10px; border-radius: 5px; border: 1px solid rgba(200, 200, 200, 0.6); animation: flashWarning 30s ease-in-out forwards; } @keyframes flashWarning { 0% { opacity: 0.8; } 10% { opacity: 0; } 20% { opacity: 0.8; } 30% { opacity: 0; } 40% { opacity: 0.8; } 50% { opacity: 0; } 60% { opacity: 0.8; } 70% { opacity: 0; } 80% { opacity: 0.8; } 90% { opacity: 0; } 100% { opacity: 0; display: none; } } .fire-emoji { display: inline-block; animation: flameBurn 1s ease-in-out infinite alternate; transform-origin: center bottom; margin: 0 4px; filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.6)); }
.fire-emoji:nth-child(1) { animation-delay: 0s; }
.fire-emoji:nth-child(2) { animation-delay: 0.5s; } @keyframes flameBurn { 0% { transform: scale(1) rotate(-5deg); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(255, 69, 0, 0.4)); } 50% { transform: scale(1.1) rotate(5deg); opacity: 1; filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.8)); } 100% { transform: scale(1) rotate(-5deg); opacity: 0.9; filter: drop-shadow(0 0 3px rgba(255, 69, 0, 0.4)); } }
/ Light mode adjustment / @media (prefers-color-scheme: light) { .fire-emoji { filter: drop-shadow(0 0 2px rgba(255, 140, 0, 0.5)); } } .credit-list { list-style-type: none; padding: 0; margin: 0; } .credit-list li { display: flex; align-items: center; margin-bottom: 15px; padding: 15px; background-color: #333; border: 1px solid #ddd; border-radius: 8px; transition: all 0.3s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .credit-list li:hover { background-color: #3a3a3a; border-color: #bbb; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.1); } .avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 15px; object-fit: cover; flex-shrink: 0; } </style> <div class="container"> <div class="header"> <h1 class="model-name"> <span class="fire-emoji">🔥</span> Brisk Evolution v0.1 <span class="fire-emoji">🔥</span> </h1> <h1 class="model-name">12B</h1> <p class="subtitle">🌪️ What's a little darkness? 🌪️</p> </div> <div class="waifu-container"> <img src="https://huggingface.co/spaces/ReadyArt/README/resolve/main/OnceAgain-2.jpeg" class="waifu-img" alt="Waifu"> </div> <div class="section"> <h2 class="section-title">📜 Warnings</h2> <ul> <li>🥥 This is a test model to see how the dataset turned out. It is not the final version. The dataset is small currently.</li> </ul> </div> <br> <div class="section shifty-section"> <h2 class="section-title">⚙️ Technical Specifications</h2> <p><strong>🚡 Recommended Settings:</strong></p> <p>minp - 0.02<br>top p - 0.9<br>temp - 0.7</p> <div class="quant-links"> <div class="link-card"> <h3>GGUF</h3> <a href="https://huggingface.co/ReadyArt/Brisk-Evolution-12B-v0.1-GGUF" class="link-button">Quants</a> </div> </div> </div> <div class="section remember-this"> <h2 class="section-title">🧑🔬 Credit</h2> <ul class="credit-list"> <li> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png" alt="Steelskull Avatar" class="avatar"> <span>Steelskull (Dataset was generated on L3.3-Shakudo-70b)</span> </li> <li> <img src="https://huggingface.co/avatars/55f24699e05af4295a9d16ddecd81f8a.svg" alt="GECFDO Avatar" class="avatar"> <span>GECFDO (Dataset Generation & Model image)</span> </li> <li> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/673fa5ccbf2e9c35b2ec841a/rPHaMrqyYTfSJ89NN8KgY.jpeg" alt="Darkhn Avatar" class="avatar"> <span>Darkhn (Dataset Cleanup Tool)</span> </li> <li> <img src="https://huggingface.co/avatars/75a3eb8d24efb96b7b7e69340845028f.svg" alt="Sleep Deprived Avatar" class="avatar"> <span>Sleep Deprived (Syn Generator Tool Author)</span> </li> <li> <img src="https://cdn-avatars.huggingface.co/v1/production/uploads/6759e155bc947d6070775cb9/8ewjw-OfVOHwQgIxLv40v.png" alt="FrenzyBiscuit Avatar" class="avatar"> <span>FrenzyBiscuit (Dataset Creator & Syn Generator Tool Author)</span> </li> </ul> </div> <div class="section"> <h2 class="section-title">🔖 License</h2> <p>By using this model, you agree:</p> <ul> <li>This tune is based on the Llama 3.1 license</li> <li>To accept full responsibility for all generated content</li> <li>That you're at least 18+ years old</li> <li>That the architects bear no responsibility for your corruption</li> <li>This model is intended for personal usage only. Using this model for profit or commercial usage is not the intended purpose and we take no responsibility for the depravity your users may experience.</li> </ul> </div> </div> <script> // This script has always been here document.getElementById('date').textContent = new Date().toLocaleDateString(); setInterval(() => { document.getElementById('credit').textContent = contributors[Math.floor(Math.random() contributors.length)]; }, 7000); // Flash warning behavior setTimeout(() => { const reminder = document.createElement('div'); reminder.className = 'flash-warning'; reminder.textContent = 'You have been reading for quite some time. Are you sure you haven\'t seen this before?'; reminder.style.animation = 'flashWarning 15s ease-in-out forwards'; document.body.appendChild(reminder); setInterval(() => { if(Math.random() > 0.9) { document.body.appendChild(reminder.cloneNode(true)); } }, 45000); }, 30000); // Make cursor behave strangely document.addEventListener('mousemove', (e) => { if(Math.random() > 0.98) { document.documentElement.style.cursor = 'wait'; setTimeout(() => { document.documentElement.style.cursor = ''; }, 50); } }); // Randomly shift sections when not looking setInterval(() => { if(document.hidden) { document.querySelectorAll('.shifty-section').forEach(section => { section.style.transform = `translateX(${Math.random() > 0.5 ? '' : '-'}${Math.random() 5}px)`; }); } }, 1500); </script>
