|
<!DOCTYPE html> |
|
<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: hidden; |
|
overflow-y: hidden; |
|
padding: 20px; |
|
box-sizing: border-box; |
|
} |
|
|
|
.timeline { |
|
display: grid; |
|
grid-template-columns: repeat(4, 1fr); |
|
gap: 20px; |
|
padding-bottom: 10px; |
|
} |
|
|
|
.event { |
|
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:has(.tag.popular) { |
|
background-color: #fff3e0; |
|
border-left: 4px solid #ffa500; |
|
} |
|
|
|
.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.popular { |
|
background-color: #ffa500; |
|
color: black; |
|
} |
|
|
|
|
|
.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.utility { background-color: #9E9E9E; color: white; } |
|
.tag.predict { background-color: #673AB7; color: white; } |
|
.tag.Productivity { 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; } |
|
|
|
|
|
.tag.image-gen { |
|
background-color: #4CAF50; |
|
color: white; |
|
} |
|
.tag.image-edit { |
|
background-color: #FF5722; |
|
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; |
|
} |
|
|
|
.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; |
|
} |
|
|
|
|
|
.toggle-button[data-filter="best"] { background-color: #FFD700; color: black; } |
|
.toggle-button[data-filter="new"] { background-color: #FF4081; color: white; } |
|
.toggle-button[data-filter="popular"] { background-color: #ffa500; color: black; } |
|
.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="utility"] { background-color: #9E9E9E; color: white; } |
|
.toggle-button[data-filter="predict"] { background-color: #673AB7; color: white; } |
|
.toggle-button[data-filter="Productivity"] { 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; } |
|
|
|
|
|
.toggle-button[data-filter="image-gen"] { background-color: #4CAF50; color: white; } |
|
.toggle-button[data-filter="image-edit"] { background-color: #FF5722; color: white; } |
|
|
|
.toggle-button[data-filter="image-gen"].active { background-color: #388E3C; border-color: #388E3C; } |
|
.toggle-button[data-filter="image-edit"].active { background-color: #E64A19; border-color: #E64A19; } |
|
|
|
.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="popular">POPULAR</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="image-gen">Image Gen</button> |
|
<button class="toggle-button" data-filter="image-edit">Image Edit</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="predict">Predict</button> |
|
<button class="toggle-button" data-filter="Productivity">Productivity</button> |
|
<button class="toggle-button" data-filter="utility">Utility</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> |
|
<span class="counter-divider">ยท</span> |
|
<span class="counter-item"> |
|
<span id="popular-count">0</span> POPULAR |
|
</span> |
|
</div> |
|
|
|
<h2 class="section-title">Latest Models</h2> |
|
|
|
<div class="timeline-container"> |
|
<div class="timeline"> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/diagram</h4> |
|
<p>FLUX DIAGRAM GENERATOR(<a href="https://huggingface.co/spaces/aiqcamp/diagram" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/korea-president-yoon</h4> |
|
<p>LoRA IMAGE GENERATOR(<a href="https://huggingface.co/spaces/openfree/korea-president-yoon" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>VIDraft/PaperImpact</h4> |
|
<p>Paper Predict(<a href="https://huggingface.co/spaces/VIDraft/PaperImpact" target="_blank">link</a>).</p> |
|
<span class="tag Predict">Predict</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/CryptoVision</h4> |
|
<p>Crypto Price Predict(<a href="https://huggingface.co/spaces/openfree/CryptoVision" target="_blank">link</a>).</p> |
|
<span class="tag predict">Predict</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>gunship999/Gunship-3D-FPS</h4> |
|
<p>3D FPS(<a href="https://huggingface.co/spaces/gunship999/Gunship-3D-FPS" target="_blank">link</a>).</p> |
|
<span class="tag game">Game</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/VoiceClone</h4> |
|
<p>Voice Clone & TTS(<a href="https://huggingface.co/spaces/fantos/VoiceClone" target="_blank">link</a>).</p> |
|
<span class="tag audio">Audio</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>VIDraft/ChemGenesis</h4> |
|
<p>Chemical Predict(<a href="https://huggingface.co/spaces/VIDraft/ChemGenesis" target="_blank">link</a>).</p> |
|
<span class="tag Vision">Vision</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/ocrlatex</h4> |
|
<p>OCR LATEX VIEW(<a href="https://huggingface.co/spaces/seawolf2357/ocrlatex" target="_blank">link</a>).</p> |
|
<span class="tag Vision">Vision</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/img2vid</h4> |
|
<p>Image to Video Generation (<a href="https://huggingface.co/spaces/seawolf2357/img2vid" target="_blank">link</a>).</p> |
|
<span class="tag video">Video</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/sd-prompt-gen</h4> |
|
<p>Image Prompt Generation(<a href="https://huggingface.co/spaces/seawolf2357/sd-prompt-gen" target="_blank">link</a>).</p> |
|
<span class="tag Text">Text</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/badassgi</h4> |
|
<p>transcribe & translate(<a href="https://huggingface.co/spaces/openfree/badassgi" target="_blank">link</a>).</p> |
|
<span class="tag Multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/tarotcard</h4> |
|
<p>Tarot Card Fotune(<a href="https://huggingface.co/spaces/openfree/tarotcard" target="_blank">link</a>).</p> |
|
<span class="tag Utility">Utility</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/drqxab</h4> |
|
<p>3D Simulation(<a href="https://huggingface.co/spaces/openfree/drqxab" target="_blank">link</a>).</p> |
|
<span class="tag Education">Education</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/Polaroid</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqcamp/Polaroid" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/cartoon</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginigen/cartoon" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Book-Cover</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginigen/Book-Cover" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</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 Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</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 Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/webtoon</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/openfree/webtoon" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</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 Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</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 Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</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 Utility">Utility</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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 Education">Education</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/ProteinGenesis</h4> |
|
<p>Protein generation & Predict(<a href="https://huggingface.co/spaces/openfree/ProteinGenesis" target="_blank">link</a>).</p> |
|
<span class="tag Predict">Predict</span> |
|
<span class="tag best">BEST</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 Utility">Utility</span> |
|
<span class="tag popular">POPULAR</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 Video">Video</span> |
|
<span class="tag best">BEST</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 Text">Text</span> |
|
<span class="tag best">BEST</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 Multimodal">Multimodal</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/FLUX-military</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/FLUX-military" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/Rolls-Royce</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantaxy/Rolls-Royce" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/flux-korea-hanbok-lora</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-hanbok-lora" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/flux-korea-palace-lora</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flux-korea-palace-lora" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/flux-cat-lora</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqcamp/flux-cat-lora" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</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-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/flux-claude-monet-lora</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/flux-claude-monet-lora" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</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 Productivity">Productivity</span> |
|
<span class="tag best">BEST</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 Education">Education</span> |
|
<span class="tag new">NEW</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-edit">Image Edit</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/playground25</h4> |
|
<p>ZeroWeight Image Studio(<a href="https://huggingface.co/spaces/fantaxy/playground25" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</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-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag new">NEW</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 image-gen">Image Gen</span> |
|
<span class="tag new">NEW</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 image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag best">BEST</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> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag popular">POPULAR</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 image-edit">Image Edit</span> |
|
<span class="tag new">NEW</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-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/flxloraexp</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantaxy/flxloraexp" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/flxloraexp</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/fantos/flxloraexp" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>seawolf2357/flxloraexp</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/seawolf2357/flxloraexp" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/flxloraexp</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/ginipick/flxloraexp" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Sign-language</h4> |
|
<p>America Sign language generator(<a href="https://huggingface.co/spaces/ginigen/Sign-language" target="_blank">link</a>).</p> |
|
<span class="tag Video">Video</span> |
|
<span class="tag popular">BEST</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Dokdo</h4> |
|
<p>Video Generation(<a href="https://huggingface.co/spaces/ginigen/Dokdo" target="_blank">link</a>).</p> |
|
<span class="tag Video">Video</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/imagemagic</h4> |
|
<p>Image Inpainting(<a href="https://huggingface.co/spaces/aiqcamp/imagemagic" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</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-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag best">BEST</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/AudioLlama</h4> |
|
<p>Sound Generation(<a href="https://huggingface.co/spaces/aiqcamp/AudioLlama" target="_blank">link</a>).</p> |
|
<span class="tag audio">Audio</span> |
|
<span class="tag best">BEST</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/FLUXllama-Multilingual</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginigen/FLUXllama-Multilingual" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/ginimedi</h4> |
|
<p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginimedi" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/ginilaw</h4> |
|
<p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginilaw" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/ginipharm</h4> |
|
<p>RAG Chatbot(<a href="https://huggingface.co/spaces/ginipick/ginipharm" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/FitGen</h4> |
|
<p>Fashion Generation(<a href="https://huggingface.co/spaces/ginipick/FitGen" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/FLUX-Animations</h4> |
|
<p>Flux GIF Generation(<a href="https://huggingface.co/spaces/fantaxy/FLUX-Animations" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/Remove-Video-Background</h4> |
|
<p>Remove Video Background(<a href="https://huggingface.co/spaces/fantaxy/Remove-Video-Background" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/ofai-flx-logo</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantaxy/ofai-flx-logo" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/flx-pulid</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantaxy/flx-pulid" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/flx-upscale</h4> |
|
<p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/fantaxy/flx-upscale" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/Fashion-FLUX</h4> |
|
<p>Fashion Generation(<a href="https://huggingface.co/spaces/aiqcamp/Fashion-FLUX" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/StyleGen</h4> |
|
<p>Fashion Generation(<a href="https://huggingface.co/spaces/ginipick/StyleGen" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/StoryStar</h4> |
|
<p>Fantasy Novel Generation(<a href="https://huggingface.co/spaces/openfree/StoryStar" target="_blank">link</a>).</p> |
|
<span class="tag text">Text</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/x-mas</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantos/x-mas" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/Korean-Leaderboard</h4> |
|
<p>LKorean Leaderboard(<a href="https://huggingface.co/spaces/openfree/Korean-Leaderboard" target="_blank">link</a>).</p> |
|
<span class="tag Utility">Utility</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/FLUXllama</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginipick/FLUXllama" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/SORA-3D</h4> |
|
<p>Text/Image to 3D(<a href="https://huggingface.co/spaces/ginipick/SORA-3D" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/Sound-AI-SFX</h4> |
|
<p>Sound Generation(<a href="https://huggingface.co/spaces/fantaxy/Sound-AI-SFX" target="_blank">link</a>).</p> |
|
<span class="tag audio">Audio</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/flx8lora</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/fantos/flx8lora" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Canvas</h4> |
|
<p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/ginigen/Canvas" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/erotica</h4> |
|
<p>Adult Novel Generation(<a href="https://huggingface.co/spaces/fantaxy/erotica" target="_blank">link</a>).</p> |
|
<span class="tag Text">Text</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/time-machine</h4> |
|
<p>Flux Image Generation(<a href="https://huggingface.co/spaces/ginipick/time-machine" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/FLUX-VisionReply</h4> |
|
<p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/aiqcamp/FLUX-VisionReply" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/everychat</h4> |
|
<p>Multi LLM Chatbot(<a href="https://huggingface.co/spaces/openfree/everychat" target="_blank">link</a>).</p> |
|
<span class="tag text">Text</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>VIDraft/mouse1</h4> |
|
<p>NLP Creative Coding & Web/App(<a href="https://huggingface.co/spaces/VIDraft/mouse1" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/text3d</h4> |
|
<p>Text to 3D Style Generation(<a href="https://huggingface.co/spaces/ginipick/text3d" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/trending-board</h4> |
|
<p>Huggingface Trending Board(<a href="https://huggingface.co/spaces/openfree/trending-board" target="_blank">link</a>).</p> |
|
<span class="tag utility">Utility</span> |
|
<span class="tag best">BEST</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> |
|
<span class="tag popular">POPULAR</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> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>VIDraft/mouse-chat</h4> |
|
<p>Rich Chatbot(<a href="https://huggingface.co/spaces/VIDraft/mouse-chat" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/AccDiffusion</h4> |
|
<p>Image Generaion(<a href="https://huggingface.co/spaces/ginipick/AccDiffusion" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/GiniGEN</h4> |
|
<p>Flux LoRA Image Generaion(<a href="https://huggingface.co/spaces/openfree/GiniGEN" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag best">BEST</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> |
|
<span class="tag new">NEW</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 Utility">Utility</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/Realtime-FLUX</h4> |
|
<p>Flux Image Generaion(<a href="https://huggingface.co/spaces/ginipick/Realtime-FLUX" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag best">BEST</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</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> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/kofaceid</h4> |
|
<p>Image Inpainting(<a href="https://huggingface.co/spaces/aiqtech/kofaceid" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/fastvideogen</h4> |
|
<p>Video Generation(<a href="https://huggingface.co/spaces/fantaxy/fastvideogen" target="_blank">link</a>).</p> |
|
<span class="tag video">Video</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/MagicFace</h4> |
|
<p>FACE ID Image Generation(<a href="https://huggingface.co/spaces/openfree/MagicFace" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/flxfashmodel</h4> |
|
<p>Flux Fashion Image Inpainting(<a href="https://huggingface.co/spaces/fantos/flxfashmodel" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/kolcontrl</h4> |
|
<p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/fantos/kolcontrl" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/EveryText</h4> |
|
<p>Image & Text add (<a href="https://huggingface.co/spaces/fantos/EveryText" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/cinevid</h4> |
|
<p>CINE Image Generation(<a href="https://huggingface.co/spaces/aiqtech/cinevid" target="_blank">link</a>).</p> |
|
<span class="tag video">Video</span> |
|
<span class="tag new">NEW</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/FLUX-Ghibli-Studio-LoRA</h4> |
|
<p>LoRA Image Generation(<a href="https://huggingface.co/spaces/aiqtech/FLUX-Ghibli-Studio-LoRA" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/flxgif</h4> |
|
<p>Flux Image to GIF Generation(<a href="https://huggingface.co/spaces/aiqtech/flxgif" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
|
|
<span class="tag popular">POPULAR</span> |
|
|
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqtech/imaginpaint</h4> |
|
<p>Flux Image Inpainting(<a href="https://huggingface.co/spaces/aiqtech/imaginpaint" target="_blank">link</a>).</p> |
|
<span class="tag image-edit">Image Edit</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/QR-Canvas</h4> |
|
<p>QR Advanced Generator(<a href="https://huggingface.co/spaces/ginipick/QR-Canvas" target="_blank">link</a>).</p> |
|
<span class="tag utility">Utility</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/MoneyRadar</h4> |
|
<p>Implies scanning the market to spot Earning opportunities(<a href="https://huggingface.co/spaces/openfree/MoneyRadar" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-fantasy</h4> |
|
<p>Fantasy 'Graphic Novel' generator(<a href="https://huggingface.co/spaces/fantaxy/novel-fantasy" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-romance</h4> |
|
<p>romance 'Graphic Novel' generator(<a href="https://huggingface.co/spaces/fantaxy/novel-romance" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-sorim</h4> |
|
<p>Kungfu & Muhyup 'Graphic Novel' generator(<a href="https://huggingface.co/spaces/fantaxy/novel-sorim" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-erotica</h4> |
|
<p>NSFW Adult 'Graphic Novel' generator(<a href="https://huggingface.co/spaces/fantaxy/novel-erotica" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/pepe</h4> |
|
<p>PEPE Meme Generator(<a href="https://huggingface.co/spaces/openfree/pepe" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-romance-en</h4> |
|
<p>Kungfu & Muhyup 'Graphic Novel' generator EN(<a href="https://huggingface.co/spaces/fantaxy/novel-romance-en" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-sorim-en</h4> |
|
<p>Kungfu & Muhyup 'Graphic Novel' generator EN(<a href="https://huggingface.co/spaces/fantaxy/novel-sorim-en" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-fantasy-en</h4> |
|
<p>Fantasy 'Graphic Novel' generator EN(<a href="https://huggingface.co/spaces/fantaxy/novel-fantasy-en" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>fantaxy/novel-erotica</h4> |
|
<p>NSFW Adult 'Graphic Novel' generator EN(<a href="https://huggingface.co/spaces/fantaxy/novel-NSFW-en" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>Gemini2-Flash-Thinking</h4> |
|
<p>Gemini2 Flash Thinking(<a href="https://huggingface.co/spaces/aiqcamp/Gemini2-Flash-Thinking" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>aiqcamp/Multilingual-Images</h4> |
|
<p>Multilingual Images(<a href="https://huggingface.co/spaces/aiqcamp/Multilingual-Images" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>fantos/Ranking-Tracker</h4> |
|
<p>HF Ranking-Tracker 30 Dailys(<a href="https://huggingface.co/spaces/fantos/Ranking-Tracker" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>openfree/PDF-RAG</h4> |
|
<p>PDF RAG(<a href="https://huggingface.co/spaces/openfree/PDF-RAG" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/OpenSUNO</h4> |
|
<p>Open SUNO: Full-Song Generation(<a href="https://huggingface.co/spaces/ginipick/OpenSUNO" target="_blank">link</a>).</p> |
|
<span class="tag audio">Audio</span> |
|
<span class="tag best">BEST</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Animagine</h4> |
|
<p>Animation Image Generation(<a href="https://huggingface.co/spaces/ginigen/Animagine" target="_blank">link</a>).</p> |
|
<span class="tag image-gen">Image Gen</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/Janus-Pro-7B</h4> |
|
<p>Janus-Pro-7B I2T/ T2I(<a href="https://huggingface.co/spaces/ginigen/Janus-Pro-7B" target="_blank">link</a>).</p> |
|
<span class="tag multimodal">Multimodal</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginigen/ColPali-multi</h4> |
|
<p>ColPali multi output(<a href="https://huggingface.co/spaces/ginigen/ColPali-multi" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/like-history</h4> |
|
<p>like history(<a href="https://huggingface.co/spaces/ginipick/like-history" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
<div class="event"> |
|
<h4>ginipick/DeepSeekR1-LIVE</h4> |
|
<p>DeepSeek R1 LIVE Search(<a href="https://huggingface.co/spaces/ginipick/DeepSeekR1-LIVE" target="_blank">link</a>).</p> |
|
<span class="tag Productivity">Productivity</span> |
|
<span class="tag popular">POPULAR</span> |
|
</div> |
|
|
|
|
|
</div> |
|
</div> |
|
|
|
|
|
|
|
|
|
<script> |
|
function updateCounts() { |
|
const bestCount = document.querySelectorAll('.tag.best').length; |
|
const newCount = document.querySelectorAll('.tag.new').length; |
|
const popularCount = document.querySelectorAll('.tag.popular').length; |
|
|
|
document.getElementById('best-count').textContent = bestCount; |
|
document.getElementById('new-count').textContent = newCount; |
|
document.getElementById('popular-count').textContent = popularCount; |
|
} |
|
|
|
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 activeFilters = Array.from(document.querySelectorAll('.toggle-button.active')).map(button => button.getAttribute('data-filter')); |
|
|
|
|
|
if (activeFilters.includes('all')) { |
|
event.style.display = 'block'; |
|
return; |
|
} |
|
|
|
|
|
const matches = activeFilters.some(filter => { |
|
return event.querySelector(`.tag.${filter}`); |
|
}); |
|
|
|
event.style.display = matches ? '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> |