Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Timeline Template</title> | |
| <style> | |
| body { | |
| font-family: 'Arial', sans-serif; | |
| background-color: #f4f4f9; | |
| color: #333; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| .timeline-container { | |
| width: 100%; | |
| overflow-x: auto; | |
| overflow-y: hidden; | |
| padding: 20px; | |
| box-sizing: border-box; | |
| } | |
| .timeline { | |
| display: flex; | |
| flex-direction: row; | |
| gap: 20px; | |
| min-width: min-content; | |
| padding-bottom: 10px; | |
| } | |
| .event { | |
| flex: 0 0 300px; | |
| background: white; | |
| border-radius: 8px; | |
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
| padding: 15px; | |
| transition: all 0.3s ease; | |
| } | |
| .event:has(.tag.best) { | |
| background-color: #fff8e1; | |
| border-left: 4px solid #ffd700; | |
| } | |
| .event:has(.tag.new) { | |
| background-color: #fce4ec; | |
| border-left: 4px solid #ff4081; | |
| } | |
| .event:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | |
| } | |
| .event h4 { | |
| margin: 0; | |
| font-size: 14px; | |
| } | |
| .event p { | |
| margin: 5px 0 0; | |
| font-size: 12px; | |
| color: #666; | |
| } | |
| .tag { | |
| display: inline-block; | |
| padding: 2px 5px; | |
| font-size: 10px; | |
| border-radius: 3px; | |
| margin-top: 5px; | |
| margin-right: 3px; | |
| } | |
| .tag.best { | |
| background-color: #FFD700; | |
| color: black; | |
| } | |
| .tag.new { | |
| background-color: #FF4081; | |
| color: white; | |
| } | |
| .tag.text { background-color: #9c27b0; color: white; } | |
| .tag.audio { background-color: #ff9800; color: white; } | |
| .tag.vision { background-color: #03a9f4; color: white; } | |
| .tag.multimodal { background-color: #795548; color: white; } | |
| .tag.video { background-color: #E91E63; color: white; } | |
| .tag.image { background-color: #00BCD4; color: white; } | |
| .tag.utility { background-color: #9E9E9E; color: white; } | |
| .tag.predict { background-color: #673AB7; color: white; } | |
| .tag.game { background-color: #4CAF50; color: white; } | |
| .tag.education { background-color: #3F51B5; color: white; } | |
| .tag.announcement { background-color: #607d8b; color: white; } | |
| .event p a { | |
| color: #4caf50; | |
| text-decoration: none; | |
| } | |
| .event p a:hover { | |
| text-decoration: underline; | |
| } | |
| .github-link { | |
| text-align: center; | |
| padding: 8px; | |
| background-color: #24292e; | |
| color: white; | |
| font-size: 14px; | |
| } | |
| .github-link a { | |
| color: white; | |
| text-decoration: none; | |
| } | |
| .github-link a:hover { | |
| text-decoration: underline; | |
| } | |
| .timeline-container::-webkit-scrollbar { | |
| height: 8px; | |
| } | |
| .timeline-container::-webkit-scrollbar-track { | |
| background: #f1f1f1; | |
| } | |
| .timeline-container::-webkit-scrollbar-thumb { | |
| background: #888; | |
| border-radius: 4px; | |
| } | |
| .timeline-container::-webkit-scrollbar-thumb:hover { | |
| background: #555; | |
| } | |
| .filter-group { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 15px; | |
| padding: 20px 0; | |
| background-color: white; | |
| border-bottom: 1px solid #eee; | |
| } | |
| .toggle-container { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| justify-content: center; | |
| max-width: 900px; | |
| padding: 0 20px; | |
| } | |
| .toggle-button { | |
| padding: 6px 12px; | |
| border: 1px solid #ddd; | |
| border-radius: 15px; | |
| background-color: white; | |
| font-size: 13px; | |
| cursor: pointer; | |
| transition: all 0.2s ease; | |
| min-width: 80px; | |
| text-align: center; | |
| } | |
| .toggle-button.active { | |
| background-color: #2196f3; | |
| border-color: #2196f3; | |
| color: white; | |
| } | |
| .category-group { | |
| width: 100%; | |
| display: flex; | |
| justify-content: center; | |
| gap: 8px; | |
| margin-top: 10px; | |
| flex-wrap: wrap; | |
| } | |
| .toggle-button[data-filter="best"] { background-color: #FFD700; color: black; } | |
| .toggle-button[data-filter="new"] { background-color: #FF4081; color: white; } | |
| .toggle-button[data-filter="text"] { background-color: #9c27b0; color: white; } | |
| .toggle-button[data-filter="audio"] { background-color: #ff9800; color: white; } | |
| .toggle-button[data-filter="vision"] { background-color: #03a9f4; color: white; } | |
| .toggle-button[data-filter="multimodal"] { background-color: #795548; color: white; } | |
| .toggle-button[data-filter="video"] { background-color: #E91E63; color: white; } | |
| .toggle-button[data-filter="image"] { background-color: #00BCD4; color: white; } | |
| .toggle-button[data-filter="utility"] { background-color: #9E9E9E; color: white; } | |
| .toggle-button[data-filter="predict"] { background-color: #673AB7; color: white; } | |
| .toggle-button[data-filter="game"] { background-color: #4CAF50; color: white; } | |
| .toggle-button[data-filter="education"] { background-color: #3F51B5; color: white; } | |
| .counter-container { | |
| text-align: center; | |
| padding: 15px; | |
| font-size: 14px; | |
| color: #666; | |
| background-color: #f8f9fa; | |
| } | |
| .counter-item span { | |
| font-weight: bold; | |
| color: #2196f3; | |
| } | |
| .counter-divider { | |
| margin: 0 10px; | |
| color: #ddd; | |
| } | |
| .section-title { | |
| text-align: center; | |
| padding: 15px; | |
| color: white; | |
| background-color: #6200ea; | |
| margin: 0; | |
| font-size: 18px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="github-link"> | |
| <a href="https://discord.gg/openfreeai" target="_blank">Community</a> | |
| </div> | |
| <div class="filter-group"> | |
| <div class="toggle-container"> | |
| <button class="toggle-button active" data-filter="all">All Models</button> | |
| <button class="toggle-button" data-filter="best">BEST</button> | |
| <button class="toggle-button" data-filter="new">NEW</button> | |
| </div> | |
| <div class="category-group"> | |
| <button class="toggle-button" data-filter="text">Text</button> | |
| <button class="toggle-button" data-filter="audio">Audio</button> | |
| <button class="toggle-button" data-filter="vision">Vision</button> | |
| <button class="toggle-button" data-filter="multimodal">Multimodal</button> | |
| <button class="toggle-button" data-filter="video">Video</button> | |
| <button class="toggle-button" data-filter="image">Image</button> | |
| <button class="toggle-button" data-filter="utility">Utility</button> | |
| <button class="toggle-button" data-filter="predict">Predict</button> | |
| <button class="toggle-button" data-filter="game">Game</button> | |
| <button class="toggle-button" data-filter="education">Education</button> | |
| </div> | |
| </div> | |
| <div class="counter-container"> | |
| <span class="counter-item"> | |
| <span id="best-count">0</span> BEST | |
| </span> | |
| <span class="counter-divider">·</span> | |
| <span class="counter-item"> | |
| <span id="new-count">0</span> NEW | |
| </span> | |
| </div> | |
| <h2 class="section-title">Latest Models</h2> | |
| <div class="timeline-container"> | |
| <div class="timeline"> | |
| <div class="event"> | |
| <h4>aiqcamp/diagram</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/diagram" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| <span class="tag multimodal">BEST</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/korea-president-yoon</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/korea-president-yoon" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| <span class="tag multimodal">NEW/span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/PaperImpact</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/PaperImpact" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/CryptoVision</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/CryptoVision" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/Gunship-3D-FPS</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/Gunship-3D-FPS" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/VoiceClone</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/VoiceClone" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/ChemGenesis</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/ChemGenesis" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/ocrlatex</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/ocrlatex" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/img2vid</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/img2vid" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/sd-prompt-gen</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/sd-prompt-gen" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/badassgi</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/badassgi" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/tarotcard</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/tarotcard" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/drqxab</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/drqxab" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/Polaroid</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/Polaroid" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/cartoon</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/cartoon" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/Book-Cover</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/Book-Cover" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/fash</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/fash" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/Korea-Daily-News</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/Korea-Daily-News" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/Quantum</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Quantum" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/webtoon</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/webtoon" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>immunobiotech/ChicagoGallery</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/ChicagoGallery" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>immunobiotech/MetropolitanMuseum</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/MetropolitanMuseum" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>immunobiotech/opensky</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/immunobiotech/opensky" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/Audio-Visualizer</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Audio-Visualizer" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/Radio-Learning</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Radio-Learning" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/Future-Gallaxy</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/Future-Gallaxy" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/ProteinGenesis</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/ProteinGenesis" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/2025saju</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/2025saju" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/Dokdo-membership</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/Dokdo-membership" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/eum</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/eum" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/VisionART</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/VisionART" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/FLUX-military</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/FLUX-military" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/Rolls-Royce</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/Rolls-Royce" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/flux-korea-hanbok-lora</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-hanbok-lora" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/flux-korea-palace-lora</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-palace-lora" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/flux-cat-lora</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/flux-cat-lora" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/SexyImages</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/SexyImages" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/flux-claude-monet-lora</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/flux-claude-monet-lora" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/CANVAS-o3</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/CANVAS-o3" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/world-sdr</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/world-sdr" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/3D-Avatar-Generator</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/3D-Avatar-Generator" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/playground25</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/playground25" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/ultpixgen</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/ultpixgen" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/VISION-NIGHT</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/VISION-NIGHT" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/FLUX-WEB</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/FLUX-WEB" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/REALVISXL-V5</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/REALVISXL-V5" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/Dokdo-multimodal</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/Dokdo-multimodal" target="_blank">link</a>).</p> | |
| <span class="tag multimodal">Multimodal</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/theater</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/theater" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/stock</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/stock" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/flxcontrol</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/flxcontrol" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/textcutobject</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/textcutobject" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/FLUX-Prompt-Generator</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/FLUX-Prompt-Generator" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/flxloraexp</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/flxloraexp" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/flxloraexp</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/flxloraexp" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>seawolf2357/flxloraexp</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/seawolf2357/flxloraexp" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/flxloraexp</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/flxloraexp" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/FLUX-Prompt-Generator</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/FLUX-Prompt-Generator" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/Dokdo</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/Dokdo" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/imagemagic</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/imagemagic" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/ColorRevive</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/ColorRevive" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/RAGOndevice</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/RAGOndevice" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/Radar-Bluetooth</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/Radar-Bluetooth" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/WiFi-VISION</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/WiFi-VISION" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>gunship999/SONAR-Radar</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/gunship999/SONAR-Radar" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/AudioLlama</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/AudioLlama" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/FLUXllama-Multilingual</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/FLUXllama-Multilingual" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/ginimedi</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/ginimedi" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/ginilaw</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/ginilaw" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/ginipharm</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/ginipharm" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/FitGen</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/FitGen" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/FLUX-Animations</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/FLUX-Animations" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/Remove-Video-Background</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/Remove-Video-Background" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/ofai-flx-logo</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/ofai-flx-logo" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/flx-pulid</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/flx-pulid" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/flx-upscale</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/flx-upscale" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/Fashion-FLUX</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/Fashion-FLUX" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/StyleGen</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/StyleGen" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/StoryStar</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/StoryStar" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/x-mas</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/x-mas" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/Korean-Leaderboard</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/Korean-Leaderboard" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/FLUXllama</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/FLUXllama" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/SORA-3D</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/SORA-3D" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/Sound-AI-SFX</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/Sound-AI-SFX" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/flx8lora</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/flx8lora" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginigen/Canvas</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginigen/Canvas" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/erotica</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/erotica" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/time-machine</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/time-machine" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqcamp/FLUX-VisionReply</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqcamp/FLUX-VisionReply" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/Tetris-Game</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/Tetris-Game" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/everychat</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/everychat" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/mouse1</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/mouse1" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/alpha-go</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/alpha-go" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/text3d</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/text3d" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/trending-board</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/trending-board" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>cutechicken/tankwar</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/cutechicken/tankwar" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/game-jewel</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/game-jewel" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/mouse-chat</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/mouse-chat" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/AccDiffusion</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/AccDiffusion" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/Particle-Accelerator-Simulation</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/Particle-Accelerator-Simulation" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/GiniGEN</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/GiniGEN" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/3DAudio-Spectrum-Analyzer</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/3DAudio-Spectrum-Analyzer" target="_blank">link</a>).</p> | |
| <span class="tag audio">Audio</span> | |
| </div> | |
| <div class="event"> | |
| <h4>openfree/trending-news-24</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/openfree/trending-news-24" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>ginipick/Realtime-FLUX</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/ginipick/Realtime-FLUX" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/prime-number</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/prime-number" target="_blank">link</a>).</p> | |
| <span class="tag education">Education</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/zombie-game</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/zombie-game" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/miro-game</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/miro-game" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/shooting</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/shooting" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>VIDraft/Mouse-Hackathon</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/VIDraft/Mouse-Hackathon" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqmaster/stocksimulation</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/stocksimulation" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqmaster/assetai</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/assetai" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqmaster/stockai</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqmaster/stockai" target="_blank">link</a>).</p> | |
| <span class="tag predict">Predict</span> | |
| </div> | |
| <div class="event"> | |
| <h4>cutechicken/TankWar3D</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/cutechicken/TankWar3D" target="_blank">link</a>).</p> | |
| <span class="tag game">Game</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/RC4-EnDecoder</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/RC4-EnDecoder" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/simulator</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/simulator" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>kolaslab/calculator</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/kolaslab/calculator" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/kofaceid</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/kofaceid" target="_blank">link</a>).</p> | |
| <span class="tag vision">Vision</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantaxy/fastvideogen</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantaxy/fastvideogen" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/cogvidx</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/cogvidx" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/flxfashmodel</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/flxfashmodel" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/kolcontrl</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/kolcontrl" target="_blank">link</a>).</p> | |
| <span class="tag utility">Utility</span> | |
| </div> | |
| <div class="event"> | |
| <h4>fantos/EveryText</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/fantos/EveryText" target="_blank">link</a>).</p> | |
| <span class="tag text">Text</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/cinevid</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/cinevid" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/FLUX-Ghibli-Studio-LoRA</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/FLUX-Ghibli-Studio-LoRA" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/flxgif</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/flxgif" target="_blank">link</a>).</p> | |
| <span class="tag video">Video</span> | |
| </div> | |
| <div class="event"> | |
| <h4>aiqtech/imaginpaint</h4> | |
| <p>Link (<a href="https://huggingface.co/spaces/aiqtech/imaginpaint" target="_blank">link</a>).</p> | |
| <span class="tag image">Image</span> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| function updateCounts() { | |
| const bestCount = document.querySelectorAll('.tag.best').length; | |
| const newCount = document.querySelectorAll('.tag.new').length; | |
| document.getElementById('best-count').textContent = bestCount; | |
| document.getElementById('new-count').textContent = newCount; | |
| } | |
| let currentFilters = { | |
| category: 'all' | |
| }; | |
| function filterByCategory(category) { | |
| const buttons = document.querySelectorAll('.toggle-button'); | |
| buttons.forEach(button => { | |
| button.classList.remove('active'); | |
| if (button.getAttribute('data-filter') === category) { | |
| button.classList.add('active'); | |
| } | |
| }); | |
| currentFilters.category = category; | |
| applyFilters(); | |
| } | |
| function applyFilters() { | |
| const events = document.querySelectorAll('.event'); | |
| events.forEach(event => { | |
| const matchesCategory = currentFilters.category === 'all' || | |
| event.querySelector(`.tag.${currentFilters.category}`); | |
| event.style.display = matchesCategory ? 'block' : 'none'; | |
| }); | |
| updateCounts(); | |
| } | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const buttons = document.querySelectorAll('.toggle-button'); | |
| buttons.forEach(button => { | |
| button.addEventListener('click', function() { | |
| filterByCategory(this.getAttribute('data-filter')); | |
| }); | |
| }); | |
| updateCounts(); | |
| }); | |
| </script> | |
| </body> | |
| </html> |