CoolFace
Modelpublic

Minihits2142/SPARK.Chroma_v1

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
Model Card

<html> <head> <meta charset="UTF-8"> <style> body { display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; background-color: #1a1a1a; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; } .card { background: linear-gradient(135deg, #FF9B1C 0%, #FF9000 100%); border-radius: 15px; padding: 15px; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.4); color: #FFFFFF; border: 4px solid #FFA500; } .header { display: flex; align-items: center; margin-bottom: 25px; background: linear-gradient(135deg, #FF8D17 0%, #FA7E00 100%); padding: 15px; border-radius: 16px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.1); } .spinner { width: 28px; height: 28px; min-width: 28px; min-height: 28px; margin-right: 15px; border: 4px solid #FFCC80; border-top-color: #FFFFFF; border-radius: 50%; animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; } h2 { color: #FFFFFF; font-size: 1.4rem; margin: 0; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 800; } .grid-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; } .tile-container { display: grid; grid-template-columns: repeat(1, 1fr); gap: 12px; margin-bottom: 20px; } .tile { background-color: #FB8C00; padding: 15px; border-radius: 14px; border-bottom: 3px solid #E65100; transition: transform 0.2s ease, background-color 0.2s ease; } .tile:hover { transform: translateY(-3px); background-color: #FFA000; } .tile strong { display: block; font-size: 1.0rem; color: #FFE0B2; margin-bottom: 5px; text-transform: uppercase; } .tile span { display: block; font-size: 0.95rem; font-weight: 600; line-height: 1.2; } .notes-section { background: linear-gradient(135deg, #FF8D17 0%, #FA7E00 100%); border-radius: 16px; padding: 18px; margin-bottom: 20px; border: 2px dashed #FFCC80; } .notes-title { font-weight: 800; font-size: 1.0rem; margin-bottom: 10px; display: flex; align-items: center; color: #FFFFFF; } .note-item { background-color: #FFA000; margin-bottom: 6px; padding: 8px 12px; border-radius: 8px; font-size: 1.0rem; line-height: 1.4; color: #FFF3E0; } .progress-container { background-color: #D97B00; border-radius: 10px; height: 18px; margin-bottom: 10px; overflow: hidden; box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); } .progress-bar { width: 62.86%; height: 100%; background: linear-gradient(90deg, #FFEB3B, #FFFFFF); box-shadow: 0 0 15px #FFEB3B; animation: load 3s ease-out forwards; } .status-text { font-size: 1rem; text-align: center; font-weight: bold; color: #FFFFFF; } @keyframes spin { to { transform: rotate(360deg); } } @keyframes load { 0% { width: 0%; } 100% { width: 84%; } } </style> </head> <body> <div class="card"> <div class="header"> <div class="spinner"></div> <h2>SPARK.Chromav1 [ATTEMPT 3]</h2> </div> <div class="grid-container"> <div class="tile"> <strong>Start Date</strong> <span>Feb 25, 2026</span> </div> <div class="tile"> <strong>Last Update</strong> <span>Apr 25, 2026</span> </div> </div> <div class="tile-container"> <div class="tile"> <strong>Local Equipment</strong> <span>CPU: Intel Core I5-12400; GPU: RTX 4090 (24GB); RAM: 128GB; SSD: M.2 NVMe 1024GB</span> </div> </div> <div class="grid-container"> <div class="tile"> <strong>Dataset Size</strong> <span>~2500 Images [512/1024]</span> </div> <div class="tile"> <strong>Training Time</strong> <span>~ 88h 20m [STEP1]</span> <span>~ 68h 34m [STEP2]</span> </div> </div> <div class="notes-section"> <div class="notes-title">๐Ÿ“Œ NOTES</div> <div class="note-item">Work is underway on improving image descriptions to achieve even better results, as well as adding new images to the dataset.</div> <div class="note-item">The new two-stage training workflow is currently being tested.</div> </div> <div class="progress-container"> <div class="progress-bar"></div> </div> <div class="status-text">Training [STEP2RESOLUTION_1024]... 62.86%</div> </div> </body> </html>