HDM-xut-340M-anime / README.md
KBlueLeaf's picture
update gallery, on 2025-08-14 14:26:20 台北標準時間
7c9e455 verified
---
license: cc
datasets:
- Amber-River/Pixiv-2.6M
- KBlueLeaf/danbooru2023-webp-4Mpixel
language:
- en
pipeline_tag: text-to-image
library_name: diffusers
tags:
- text-generation-inference
- anime
---
# HDM-xut-340M-Anime
***World's smallest, cheapest anime-style T2I base***
[![Source Code - HDM](https://img.shields.io/badge/Source_Code-HDM-2ea44f)](https://github.com/KohakuBlueleaf/HDM)
[![Source Code - HDM(ComfyUI)](https://img.shields.io/badge/Source_Code-HDM(ComfyUI)-2ea44f)](https://github.com/KohakuBlueleaf/HDM-ext)
[![Model - HDM (Here)](https://img.shields.io/badge/Model_(Here)-HDM-2ea44f)](https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime)
[![Document - Tech Report](https://img.shields.io/badge/Document-Tech_Report-2ea44f)](https://github.com/KohakuBlueleaf/HDM/blob/main/TechReport.md)
![](images/thumbnail.webp)
## Introduction
HDM(Home made Diffusion Model) is a project to investigate specialized training recipe/scheme for "pretraining T2I model at home" which require the training setup should be exectuable on customer level hardware or cheap enough second handed server hardware.
Under this constraint, we introduce a new transformer backbone designed for multi-modal (for example, text-to-image) generative model called "XUT" (Cross-U-Transformer). With minimalized arch design with [TREAD](https://arxiv.org/abs/2501.04765) technique, we can achieve usable performan with computes that cost 650USD at most. (based on pricing from vast.ai)
## Gallery
<style>
.gallery-container {
position: relative;
width: 100%;
margin: 0 auto;
font-family: Arial, sans-serif;
}
.gallery-container img{
margin: 0 !important;
padding: 0 !important;
}
/* Hide radio buttons */
.gallery-container input[type="radio"] {
display: none;
}
/* Thumbnail navigation */
.thumbnail-nav {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 20px;
padding: 10px;
overflow-x: auto;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: #B398F5 #f0f0f0;
}
/* Custom scrollbar for webkit browsers */
.thumbnail-nav::-webkit-scrollbar {
height: 6px;
}
.thumbnail-nav::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 3px;
}
.thumbnail-nav::-webkit-scrollbar-thumb {
background: #B398F5;
border-radius: 3px;
}
.thumbnail-nav::-webkit-scrollbar-thumb:hover {
background: #4C88F5;
}
.thumbnail-nav label {
width: 100px;
height: 120px;
border-radius: 8px;
background-color: #B398F5;
background-size: cover;
background-position: center;
cursor: pointer;
transition: all 0.3s ease;
display: block;
flex-shrink: 0;
scroll-snap-align: center;
position: relative;
overflow: hidden;
padding: 0;
}
/* Blurred background for thumbnails */
.thumbnail-nav label::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: inherit;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
filter: blur(2px) brightness(25%);
transform: scale(1.25);
z-index: 1;
}
/* Fitted image for thumbnails */
.thumbnail-nav label::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
background-image: inherit;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
z-index: 2;
}
.thumbnail-nav label:hover {
border-color: #4C88F5;
transform: scale(1.05);
}
.gallery-container input[type="radio"]:checked + label {
border-color: #6296F5;
border-width: 4px;
transform: scale(1.1);
}
/* Main content area */
.content-area {
position: relative;
width: 100%;
min-height: 780px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Individual slide containers */
.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease;
background: white;
}
.slide.active {
opacity: 1;
visibility: visible;
}
.slide-background-image {
width: 100%;
height: 480px;
object-fit: cover;
border-radius: 10px 10px 0 0;
filter: blur(3px) brightness(25%);
transform: scale(1.1);
position: absolute;
top: 0;
left: 0;
z-index: 1;
margin: 0 !important;
padding: 0 !important;
}
/* Container for the image area */
.slide-image-container {
position: relative;
width: 100%;
height: 480px;
overflow: hidden;
border-radius: 10px 10px 0 0;
}
/* Fitted image overlay */
.slide-fitted-image {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 100%;
object-fit: contain;
z-index: 5;
box-shadow: 0 2px 10px rgba(0,0,0,0.3);
margin: 0 !important;
padding: 0 !important;
}
.slide-content {
height: 300px;
padding: 20px;
flex-grow: 1;
background-color: #21203b;
overflow-y: scroll;
}
.slide-title {
font-size: 1.5em;
font-weight: bold;
margin-bottom: 10px;
color: #eee;
}
.slide-description {
color: #aaa;
/* line-height: 1.6; */
}
/* CSS selectors to show active slides */
#slide1:checked ~ .content-area .slide:nth-child(1),
#slide2:checked ~ .content-area .slide:nth-child(2),
#slide3:checked ~ .content-area .slide:nth-child(3),
#slide4:checked ~ .content-area .slide:nth-child(4),
#slide5:checked ~ .content-area .slide:nth-child(5),
#slide6:checked ~ .content-area .slide:nth-child(6),
#slide7:checked ~ .content-area .slide:nth-child(7),
#slide8:checked ~ .content-area .slide:nth-child(8),
#slide9:checked ~ .content-area .slide:nth-child(9),
#slide10:checked ~ .content-area .slide:nth-child(10),
#slide11:checked ~ .content-area .slide:nth-child(11),
#slide12:checked ~ .content-area .slide:nth-child(12),
#slide13:checked ~ .content-area .slide:nth-child(13),
#slide14:checked ~ .content-area .slide:nth-child(14),
#slide15:checked ~ .content-area .slide:nth-child(15),
#slide16:checked ~ .content-area .slide:nth-child(16),
#slide17:checked ~ .content-area .slide:nth-child(17),
#slide18:checked ~ .content-area .slide:nth-child(18),
#slide19:checked ~ .content-area .slide:nth-child(19),
#slide20:checked ~ .content-area .slide:nth-child(20),
#slide21:checked ~ .content-area .slide:nth-child(21),
#slide22:checked ~ .content-area .slide:nth-child(22),
#slide23:checked ~ .content-area .slide:nth-child(23),
#slide24:checked ~ .content-area .slide:nth-child(24),
#slide25:checked ~ .content-area .slide:nth-child(25),
#slide26:checked ~ .content-area .slide:nth-child(26),
#slide27:checked ~ .content-area .slide:nth-child(27),
#slide28:checked ~ .content-area .slide:nth-child(28),
#slide29:checked ~ .content-area .slide:nth-child(29),
#slide30:checked ~ .content-area .slide:nth-child(30),
#slide31:checked ~ .content-area .slide:nth-child(31),
#slide32:checked ~ .content-area .slide:nth-child(32),
#slide33:checked ~ .content-area .slide:nth-child(33),
#slide34:checked ~ .content-area .slide:nth-child(34),
#slide35:checked ~ .content-area .slide:nth-child(35),
#slide36:checked ~ .content-area .slide:nth-child(36),
#slide37:checked ~ .content-area .slide:nth-child(37),
#slide38:checked ~ .content-area .slide:nth-child(38),
#slide39:checked ~ .content-area .slide:nth-child(39),
#slide40:checked ~ .content-area .slide:nth-child(40),
#slide41:checked ~ .content-area .slide:nth-child(41),
#slide42:checked ~ .content-area .slide:nth-child(42),
#slide43:checked ~ .content-area .slide:nth-child(43),
#slide44:checked ~ .content-area .slide:nth-child(44),
#slide45:checked ~ .content-area .slide:nth-child(45),
#slide46:checked ~ .content-area .slide:nth-child(46),
#slide47:checked ~ .content-area .slide:nth-child(47),
#slide48:checked ~ .content-area .slide:nth-child(48),
#slide49:checked ~ .content-area .slide:nth-child(49),
#slide50:checked ~ .content-area .slide:nth-child(50),
#slide51:checked ~ .content-area .slide:nth-child(51),
#slide52:checked ~ .content-area .slide:nth-child(52),
#slide53:checked ~ .content-area .slide:nth-child(53),
#slide54:checked ~ .content-area .slide:nth-child(54),
#slide55:checked ~ .content-area .slide:nth-child(55),
#slide56:checked ~ .content-area .slide:nth-child(56),
#slide57:checked ~ .content-area .slide:nth-child(57),
#slide58:checked ~ .content-area .slide:nth-child(58),
#slide59:checked ~ .content-area .slide:nth-child(59),
#slide60:checked ~ .content-area .slide:nth-child(60),
#slide61:checked ~ .content-area .slide:nth-child(61),
#slide62:checked ~ .content-area .slide:nth-child(62),
#slide63:checked ~ .content-area .slide:nth-child(63),
#slide64:checked ~ .content-area .slide:nth-child(64),
#slide65:checked ~ .content-area .slide:nth-child(65) {
opacity: 1;
visibility: visible;
}
/* Thumbnail background images */
label[for="slide1"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02407_.png'); }
label[for="slide2"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02783_.png'); }
label[for="slide3"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-192937_913639157822666_01_02_03_04.webp'); }
label[for="slide4"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02756_.png'); }
label[for="slide5"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-225850_77551003993312_01.webp'); }
label[for="slide6"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-171431_303199109673130_01_02_03.webp'); }
label[for="slide7"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/D983E2645DF87124DD28E799AB0CB075.jpeg'); }
label[for="slide8"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03061_.png'); }
label[for="slide9"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00493_.png'); }
label[for="slide10"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-191724_162583156957958_01_02_03.webp'); }
label[for="slide11"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-150759_753488460583170_01_02_03.webp'); }
label[for="slide12"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00552_.png'); }
label[for="slide13"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-190118_83399343549266_01.webp'); }
label[for="slide14"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-213512_1006466452888165_01_02_03.webp'); }
label[for="slide15"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-144417_710459885578623_01_02.webp'); }
label[for="slide16"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-160528_73508193969950.png'); }
label[for="slide17"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02967_.png'); }
label[for="slide18"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02989_.png'); }
label[for="slide19"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02702_.png'); }
label[for="slide20"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-164935_684249266742885_01.webp'); }
label[for="slide21"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02734_.png'); }
label[for="slide22"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00521_.png'); }
label[for="slide23"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-234212_277890920871419_01_02_03_04.webp'); }
label[for="slide24"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00519_.png'); }
label[for="slide25"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03076_.png'); }
label[for="slide26"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02957_.png'); }
label[for="slide27"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00475_.png'); }
label[for="slide28"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00560_.png'); }
label[for="slide29"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-000104_1031686041350569_01_02.webp'); }
label[for="slide30"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02870_.png'); }
label[for="slide31"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-163418_1010047888126740_01_02_03.webp'); }
label[for="slide32"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-225108_208730707976133_01_02_03.webp'); }
label[for="slide33"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1070541.png'); }
label[for="slide34"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03122_.png'); }
label[for="slide35"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-233724_944013876753649_01_02.webp'); }
label[for="slide36"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-174043_494986375547008_01_02_03.webp'); }
label[for="slide37"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1071387.png'); }
label[for="slide38"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-152936_1122802635229146_01_02(1).webp'); }
label[for="slide39"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1076892.png'); }
label[for="slide40"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02800_.png'); }
label[for="slide41"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-004804_291795535432825_01_02_03.webp'); }
label[for="slide42"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-224956_293718624327641_01_02.webp'); }
label[for="slide43"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00492_.png'); }
label[for="slide44"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02882_.png'); }
label[for="slide45"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-232028_370116235876126_01.webp'); }
label[for="slide46"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-013423_565463797077543_01_02.webp'); }
label[for="slide47"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-183119_869967301831594_01_02_03.webp'); }
label[for="slide48"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02944_.png'); }
label[for="slide49"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-220404_87459800149096_01_02.webp'); }
label[for="slide50"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02726_.png'); }
label[for="slide51"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-214635_1051482950769510_01.webp'); }
label[for="slide52"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02913_.png'); }
label[for="slide53"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-205145_960573175128065_01_02_03_04.webp'); }
label[for="slide54"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-235803_545758812501707_01_02_03.webp'); }
label[for="slide55"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02692_.png'); }
label[for="slide56"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02888_.png'); }
label[for="slide57"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02554_.png'); }
label[for="slide58"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/14B2B2490B686F1F1419AF5236A3C6EC.png'); }
label[for="slide59"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072811.png'); }
label[for="slide60"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072664.png'); }
label[for="slide61"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-201122_734221260669565_01_02_03_04.webp'); }
label[for="slide62"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02880_.png'); }
label[for="slide63"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02997_.png'); }
label[for="slide64"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02400_.png'); }
label[for="slide65"] { background-image: url('https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02793_.png'); }
/* Responsive design */
@media (max-width: 600px) {
.thumbnail-nav {
gap: 8px;
padding: 8px;
}
.thumbnail-nav label {
width: 80px;
height: 60px;
}
.slide img {
height: 200px;
}
.slide-content {
padding: 15px;
}
.slide-title {
font-size: 1.2em;
}
}
</style>
<div class="gallery-container">
<input type="radio" id="slide1" name="gallery" checked>
<input type="radio" id="slide2" name="gallery" >
<input type="radio" id="slide3" name="gallery" >
<input type="radio" id="slide4" name="gallery" >
<input type="radio" id="slide5" name="gallery" >
<input type="radio" id="slide6" name="gallery" >
<input type="radio" id="slide7" name="gallery" >
<input type="radio" id="slide8" name="gallery" >
<input type="radio" id="slide9" name="gallery" >
<input type="radio" id="slide10" name="gallery" >
<input type="radio" id="slide11" name="gallery" >
<input type="radio" id="slide12" name="gallery" >
<input type="radio" id="slide13" name="gallery" >
<input type="radio" id="slide14" name="gallery" >
<input type="radio" id="slide15" name="gallery" >
<input type="radio" id="slide16" name="gallery" >
<input type="radio" id="slide17" name="gallery" >
<input type="radio" id="slide18" name="gallery" >
<input type="radio" id="slide19" name="gallery" >
<input type="radio" id="slide20" name="gallery" >
<input type="radio" id="slide21" name="gallery" >
<input type="radio" id="slide22" name="gallery" >
<input type="radio" id="slide23" name="gallery" >
<input type="radio" id="slide24" name="gallery" >
<input type="radio" id="slide25" name="gallery" >
<input type="radio" id="slide26" name="gallery" >
<input type="radio" id="slide27" name="gallery" >
<input type="radio" id="slide28" name="gallery" >
<input type="radio" id="slide29" name="gallery" >
<input type="radio" id="slide30" name="gallery" >
<input type="radio" id="slide31" name="gallery" >
<input type="radio" id="slide32" name="gallery" >
<input type="radio" id="slide33" name="gallery" >
<input type="radio" id="slide34" name="gallery" >
<input type="radio" id="slide35" name="gallery" >
<input type="radio" id="slide36" name="gallery" >
<input type="radio" id="slide37" name="gallery" >
<input type="radio" id="slide38" name="gallery" >
<input type="radio" id="slide39" name="gallery" >
<input type="radio" id="slide40" name="gallery" >
<input type="radio" id="slide41" name="gallery" >
<input type="radio" id="slide42" name="gallery" >
<input type="radio" id="slide43" name="gallery" >
<input type="radio" id="slide44" name="gallery" >
<input type="radio" id="slide45" name="gallery" >
<input type="radio" id="slide46" name="gallery" >
<input type="radio" id="slide47" name="gallery" >
<input type="radio" id="slide48" name="gallery" >
<input type="radio" id="slide49" name="gallery" >
<input type="radio" id="slide50" name="gallery" >
<input type="radio" id="slide51" name="gallery" >
<input type="radio" id="slide52" name="gallery" >
<input type="radio" id="slide53" name="gallery" >
<input type="radio" id="slide54" name="gallery" >
<input type="radio" id="slide55" name="gallery" >
<input type="radio" id="slide56" name="gallery" >
<input type="radio" id="slide57" name="gallery" >
<input type="radio" id="slide58" name="gallery" >
<input type="radio" id="slide59" name="gallery" >
<input type="radio" id="slide60" name="gallery" >
<input type="radio" id="slide61" name="gallery" >
<input type="radio" id="slide62" name="gallery" >
<input type="radio" id="slide63" name="gallery" >
<input type="radio" id="slide64" name="gallery" >
<input type="radio" id="slide65" name="gallery" >
<!-- Thumbnail navigation -->
<div class="thumbnail-nav">
<label for="slide1"></label>
<label for="slide2"></label>
<label for="slide3"></label>
<label for="slide4"></label>
<label for="slide5"></label>
<label for="slide6"></label>
<label for="slide7"></label>
<label for="slide8"></label>
<label for="slide9"></label>
<label for="slide10"></label>
<label for="slide11"></label>
<label for="slide12"></label>
<label for="slide13"></label>
<label for="slide14"></label>
<label for="slide15"></label>
<label for="slide16"></label>
<label for="slide17"></label>
<label for="slide18"></label>
<label for="slide19"></label>
<label for="slide20"></label>
<label for="slide21"></label>
<label for="slide22"></label>
<label for="slide23"></label>
<label for="slide24"></label>
<label for="slide25"></label>
<label for="slide26"></label>
<label for="slide27"></label>
<label for="slide28"></label>
<label for="slide29"></label>
<label for="slide30"></label>
<label for="slide31"></label>
<label for="slide32"></label>
<label for="slide33"></label>
<label for="slide34"></label>
<label for="slide35"></label>
<label for="slide36"></label>
<label for="slide37"></label>
<label for="slide38"></label>
<label for="slide39"></label>
<label for="slide40"></label>
<label for="slide41"></label>
<label for="slide42"></label>
<label for="slide43"></label>
<label for="slide44"></label>
<label for="slide45"></label>
<label for="slide46"></label>
<label for="slide47"></label>
<label for="slide48"></label>
<label for="slide49"></label>
<label for="slide50"></label>
<label for="slide51"></label>
<label for="slide52"></label>
<label for="slide53"></label>
<label for="slide54"></label>
<label for="slide55"></label>
<label for="slide56"></label>
<label for="slide57"></label>
<label for="slide58"></label>
<label for="slide59"></label>
<label for="slide60"></label>
<label for="slide61"></label>
<label for="slide62"></label>
<label for="slide63"></label>
<label for="slide64"></label>
<label for="slide65"></label>
</div>
<!-- Main content area with slides -->
<div class="content-area">
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02407_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02407_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
original,
rnna,
youyo \(rnna\), own hands together, dragon tail, pointy ears, dated, solo, tail, blue tail, dragon girl, black dress, flower, simple background, full body, purple background, artist name, socks, twintails, earrings, closed mouth, signature, aqua hair, dress, mary janes, jewelry, hair flower, horns, shoes, standing, looking at viewer, sleeves past wrists, white background, hair ornament, red eyes, long hair, hair bobbles, black footwear,
A young girl with long blue hair and red eyes. she is wearing a black dress with ruffles on the skirt and sleeves, and black high heels. her hair is styled in two large horns on either side of her head, which are also decorated with small pink flowers. the background is white, making the girl and her outfit stand out.
masterpiece, newest, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02783_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02783_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
nagato \(azur lane\), azur lane,
dan-98,
animal, outdoors, black hair, animal ear fluff, tree, wide sleeves, nature, umbrella, yellow eyes, night, long hair, forest, fur-trimmed kimono, snow, oil-paper umbrella, snowing, fur trim, winter, solo, oversized animal, blunt bangs, fox ears, hime cut, wooden bridge, looking at viewer, scenery, red kimono, kimono, fox, long sleeves, fox girl, animal ears, japanese clothes, straight hair, bridge, bare tree,
The image, created by the artist dan-98, depicts a serene winter scene from the Azur Lane series. It features two characters standing on a wooden bridge that spans over a snowy forest. One character is holding an oil-paper umbrella with a red and white pattern, providing shelter to both figures. The backdrop of bare trees and falling snowflakes enhances the tranquil atmosphere of this picturesque winter landscape.
masterpiece, newest, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-192937_913639157822666_01_02_03_04.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-192937_913639157822666_01_02_03_04.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, isuzu ren, magia record: mahou shoujo madoka magica gaiden, noa \(retsuhim6927\), scenery, best qualiyt, blue eyes, eyes visible through hair, hair over one eye, grey hair, medium hair, short hair, hair flower, rokka, rokka 013a, rokka \(rokka 013a\) rtms noa, expressionless, star \(sky\), looking back, hanging lantern, night, wide sleeves, architecture, blunt ends, solo focus, night sky, flower, light brown hair, japanese clothes, building, horns, from behind, looking at viewer, outdoors, hair ornament, parted lips, east asian architecture, standing, black footwear, white kimono, long sleeves, lantern, retsuhim6927\), banner, starry sky, sky, kimono, single horn, paper lantern, tree, a vibrant and whimsical digital art piece by noa (retsuhim6927), known for her distinctive and fantastical style. It features characters from the "Magia Record: Mahou Shoujo Madoka Magica Gaiden" series. Central to the composition is a young woman with light brown hair adorned with an ornament, wearing traditional Japanese attire including a kimono, long sleeves, and wide cuffs. The setting includes Japanese architecture such as hanging lanterns, shrines, and tatami flooring, enhanced by the artist's signature use of warm, cool tones, creating a sense of tranquility and magic. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 913639157822666, Size: 1360x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02756_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02756_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
mona \(genshin impact\), genshin impact,
zi13591,
blurry foreground, galaxy, outdoors, magic circle, scenery, standing, blue hat, mountain, long hair, depth of field, bug, black hair, fireflies, starry sky, blurry, hat, night sky, solo, tree, comet, firefly, mountainous horizon, witch hat, sky, star \(sky\), grass, night, from behind, twintails, witch, wide shot, nature, blue theme, forest, magic, grasslands,
This enchanting image by the artist zi13591 depicts a mystical night scene from the series "Genshin Impact. She is elegantly dressed in a flowing gown and wears a wide-brimmed hat, adding an air of mystery to her persona. The background features a breathtaking starry sky with swirling patterns and celestial elements, creating a dreamlike atmosphere. The scene is further enhanced by the presence of fireflies and a gentle glow that illuminates the forest below, highlighting the depth and vastness of the night.
masterpiece, newest, chinese commentary, commentary, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-225850_77551003993312_01.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-225850_77551003993312_01.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, kokonoe tsubaki, original, ning \(wangzening\), scenery, best qualiyt, fox ears, fox tail, animal ear fluff, two tails, green eyes, hair between eyes, long hair, blonde hair, bd96, (sh28976778:1.1), bd96 \(sh28976778\) hishi mochi, hishi mochi ning, wangzening \(sh28976778153\) and kokeshi tobi. hwng. " the background of the image is white., This image is a captivating digital art piece by the artist ning (wangzening), known for their distinctive style. The central figure is Kokonoe Tsubaki, portrayed with striking green eyes and long blonde hair adorned with fox ears and tails, embodying a mix of innocence and strength in her posture as she wields her signature weapons: katana swords. Behind her stands Shyome Tobi (Sh289767013) Hwng, his presence adding depth to the scene with a smaller figure that hints at a sense of protection or guardianship. The background showcases intricate architectural elements, contributing to an overall mystical ambiance, reflecting Tsubaki's connection to elements from various popular series such as Good Smile and Gekkoukan High School. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 77551003993312, Size: 1536x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-171431_303199109673130_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-171431_303199109673130_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, magallan \(arknights\), arknights, ghost-missingno, scenery, best qualiyt, yellow eyes, hair between eyes, streaked hair, short hair, white hair, brown hair, two-tone hair, black hair, earrings, rhodes island logo \(arknights\), outdoors, tripod, snow on headwear, mask, black gloves, cowboy shot, strap between breasts, looking at viewer, blush, drone, gloves, covered mouth, skyline, between breasts, day, multicolored hair, winter clothes, holding tripod, single earring, mask around neck, long sleeves, grey coat, solo, skyscraper, breasts, white gloves, open clothes, snowflake earrings, coat, cityscape, building, medium breasts, ice, jewelry, In this digital art piece by ghost- missingno, a young girl stands amidst a winter scene within a futuristic cityscape. The image is part of the series "Arknights," and it showcases the character Magallan. Her gloves are also black, contrasting with her white hair, and she sports an expressionless look with a on her face as she gazes directly at the viewer. The city in the background features tall buildings under a light snowfall, enhancing the overall winter ambiance of the piece. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 303199109673130, Size: 1024x1360, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/D983E2645DF87124DD28E799AB0CB075.jpeg" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/D983E2645DF87124DD28E799AB0CB075.jpeg" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: {Makaino Ririmu},short hair,small breasts,pink hair,right lap tattoo,pink eyes,pointy ears,(masterpiece:1.10),cogecha,buchi_\(qooo003\),(mochizuki_kei:1.10),starshadowmagician,ask_\(askzy\),1girl,solo,upper body,cowboy shot,(looking at viewer:1.17),landscape,dynamic pose,book,blush,(shirt:1.08),grimoire,hat bow,side braids,day,blurry foreground,(light smile:1.05),long sleeves,tree,blurry background,outdoors,capelet,(depth of field:1.26),(parted lips:1.02),(bow:1.19),bright pupils,braid,mountainous horizon,yellow shirt,holding book,hat,blurry,witch hat,(forest:1.04),(twin braids:1.12),nature,holding,a illustration of a young woman,drawn in the distinctive style of sakura yuki,(artist:1.10),standing amidst a natural setting,This artwork is part of an original series or project by sakura yuki,and depicts a serene forest scene,(She holds a book in her hands:1.12),(which has a sticker on the cover:1.14),The woman&apos;s pose suggests she is in a contemplative or peaceful state,with sunlight filtering through the trees behind her,best quality,amazing quality,very aesthetic,very awa<br><br>
Negative prompt: low quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 205282829445317, Size: 1024x1536, Model hash: f982ead8e5, Model: hdm-xut-340M-1024px-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03061_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03061_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: multiple girls, 2girls,
kirisame marisa, hakurei reimu, hidden star in four seasons, touhou,
ke-ta,
bow, black hat, wide sleeves, tree, scarf, juliet sleeves, scenery, blunt bangs, shared clothes, torii, skirt, barefoot, yellow ascot, white apron, midriff peek, ascot, mountain, ribbon trim, snow, skirt set, puffy sleeves, red skirt, pink scarf, shared scarf, petals, hair bow, black dress, sky, waist apron, sitting, detached sleeves, outdoors, hat, hair tubes, hand up, white bow, red bow, long sleeves, wide shot, witch hat, ribbon-trimmed sleeves, dress, petticoat, blonde hair, looking at viewer, day, brown hair, sweater, brown eyes, sweater dress, apron, cherry blossoms, sitting on torii, snowflake print, floral print, hat bow, long hair,
This image is a beautifully detailed illustration by the artist ke-ta, known for their intricate and expressive style. The artwork features two characters from the series "Hidden Star in Four Seasons" of the Touhou project, set against a picturesque backdrop of cherry blossom trees and snowy mountains. The scene is serene yet captivating, with the cherry blossoms adding a touch of natural beauty to the composition. The characters' interactions and the harmonious setting create a sense of camaraderie and tranquility, showcasing ke-ta's skill in character design and storytelling within the Touhou universe.
masterpiece, newest, doujinshi, scan, translation request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00493_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00493_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
kafu \(cevio\),
hiten \(hitenkei\),
bokeh, depth of field, lens flare, (artist:wlop:0.9090909090909091), (artist:WANKE:0.9090909090909091), (artist:ciloranko:0.9090909090909091), backlighting, chiaroscuro, vignetting, caustics, (artist:amashiro.natsuki:0.9090909090909091), smiling, chromatic aberration, white flowers, from above, bird's-eye view, vintage filter, among flowers, limited palette, white, field s of flowers, amazing quality, absurdres
masterpiece of a fantasy world, adding to the whimsical atmosphere of the scene., with a young girl standing in the center of the image surrounded by a field of white flowers. she is wearing a long dress and has blonde hair tied up in a bun. there are also several birds flying around her, green, and yellow., with shades of blue, adding to the whimsical and dreamlike feel of the painting. the overall color palette is soft and muted,
This image is a captivating piece by the artist hiten (hitenkei), known for their whimsical and ethereal style. The composition features a character from the series "Cevio Synthesizer V," standing amidst a field of vibrant flowers that glow with an otherworldly light, creating a dreamlike atmosphere. The scene is further enhanced by the use of color gradients, giving it a surreal quality, making it a visually striking image that blends elements of fantasy and tranquility.
best quality, very aesthetic, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-191724_162583156957958_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-191724_162583156957958_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, general student council president \(blue archive\), blue archive, epic spread, scenery, blue eyes, hair over one eye, pink hair, blue hair, colored inner hair, long hair, two-tone hair, very long hair, (n510x:1.1), negoto \(n510x\) fangpeii epic spread, tree stump, smile, school uniform, sitting, light smile, outdoors, shade, collarbone, grass, braid, hand rest, fence, long bangs, blush, looking at viewer, short sleeves, nail polish, arm up, sidelocks, headband, single braid, white dress, closed eyes, grasslands, sitting on object, on bench, best qualiyt g 840 \(he electronic\), open mouth, arm behind back, blue nails, multicolored hair, solo focus, A young girl sitting on a wooden bench in front of an archway. her left hand is raised above her head, as if she is cheering or celebrating. the archway behind her has two blue flowers and green plants. there is also a small sign with chinese characters on it. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 162583156957958, Size: 2048x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-150759_753488460583170_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-150759_753488460583170_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, ooba juri, magia record: mahou shoujo madoka magica gaiden, nagino hiiragi, scenery, best qualiyt, red eyes, black hair, gradient hair, long hair, orange hair, two-tone hair, hair rings, cowboy shot, necktie, out of frame, shaded face, holographic interface, thigh strap, expressionless, multicolored hair, wing collar, gloves, arrsitoblue nagino hiiragi \(cosplay\), shirt, outdoors, long sleeves, armor, blonde hair, building, magical girl, ribbed vest, dress shirt, white ribbon, red shirt, closed mouth, solo focus, open jacket, short hair, dressing another, open clothes, skyscraper, cityscape, looking to the side, collared shirt, hood up, day, standing, armored gloves, red skirt, In this digital artwork by nagino hiiragi, a young girl stands outdoors, her attire adorned with an assortment of colorful armor. The backdrop showcases tall buildings under a bright, sunny sky, suggesting an urban setting in the "Mahou Shoujo Madoka Magica" series. The detailed artwork and vivid colors bring to life the image's surreal charm and fantastical atmosphere, capturing a moment of introspection within the context of their world. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 753488460583170, Size: 1024x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00552_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00552_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1boy,
year 2025, solo, knight, armor, full armor, plate armor, sitting, sword, weapon, cape, red cape, helmet, medieval, fantasy, rocks, outdoors, sky, clouds, dramatic, melancholy, somber, weathered, battle-worn, resting, contemplative, red light, beam of light, artistic, painting, textured, gritty, atmospheric, moody, warrior, crusader, templar, chainmail, metal armor, exhausted, battlefield, conveying a sense of sadness and despair., post-battle
masterpiece 1902. the overall mood of the image is somber and melancholic,
This image is a captivating piece by the artist Osprey, known for their detailed and emotive style. It depicts a scene from the "Battle of Troy" series, specifically from "The Lords of Chaos" which involves two knights. This artwork beautifully captures the essence of medieval warfare and the somber atmosphere that is characteristic of Osprey's style.
best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-190118_83399343549266_01.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-190118_83399343549266_01.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, hoshina hikaru, precure, vxiv4v, scenery, pink eyes, pink hair, long hair, very long hair, star hair ornament, twintails, ahoge, jewelry, submerged, bra, pink skirt, pendant, blunt ends, water, skindentation, swimming, bubble, looking away, smile, choker, shorts, white bra, underwater, pink footwear, white shorts, petticoat, short sleeves, holding breath, medium breasts, miniskirt, freediving, hairband, underwear, breasts, cleavage, midriff, caustics, frills, hair ornament, skirt, star \(symbol\), best qualiytg, closed mouth, collarbone, magical girl, bare legs, floating hair, This image by the artist vxiv4v captures a whimsical underwater scene, part of the "Precure" series, specifically featuring a magical girl character from Hoshina Lilligio. Her twin tails float gracefully in the deep blue waters, surrounded by bubbles and highlighting her pink hair with a hairband. The background reveals the gentle depths of water, accentuated by ripples and currents that hint at an aquatic environment. Hoshina's cheerful demeanor is evident as she looks away with parted lips, adding to the serene and magical atmosphere of this captivating piece. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 83399343549266, Size: 2048x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-213512_1006466452888165_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-213512_1006466452888165_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, rennala queen of the full moon, elden ring, imo moka, scenery, blue eyes, black hair, short hair, kokotendon tokotokojam imo moka, best qualiytg, cleavage cutout, artist name, moonlight greatsword, large breasts, holding weapon, outdoors, looking to the side, dress, dagger, blurry background, gem, expressionless, gold trim, hat feather, standing on object, knight, closed mouth, solo focus, sunlight, brooch, breastplate, clothing cutout, holding scepter, hat, full armor, jewelry, armored dress, feet out of frame, scepter, helmet over eyes, crossover, day, blurry foreground, winged hat, lips, watermark, jeweled hat, tree shade, blurry, holding sword, huge moon, red brooch, breasts, wide brim, a striking piece by the artist imo moka, showcasing two distinct characters in an original setting. She holds a golden sword in one hand and has her eyes covered with her armored attire, giving an air of readiness for battle or a moment of rest. In contrast, the character on the right appears to be dressed as Rennala Queen of The Moon, characterized by their regal presence. The detailed style and symbolic imagery suggest themes of strength, mystique, and otherworldliness, typical of imo moka's artistic approach for characters like Elden Rallwood. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 1006466452888165, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-144417_710459885578623_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-144417_710459885578623_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: segawa hajime, scenery, best qualiyt, segawa hajime rainingpeanutss, artist name, black hair, winter coat, outdoors, weapon on back, skiing, day, hand net, signature, fur-trimmed boots, hat, nature, forest, snowboarder, gloves, fingerless gloves, helmet, sword, wide shot, fur boots, solo focus, blush, boots, tree, winter clothes, coat, over shoulder, mossberg 590, water, blue footwear, hiking pole, looking at viewer, planted sword, goggles, waterfall, shovel, planted shovel, goggles on headwear, rock, faux traditional media, white eyes, weapon, standing, hat under hood, a serene and adventurous artwork created by the artist Segawa Hajime. At the forefront stands a figure named Nolina Arora from "Rage 30," clad in an elaborate, fur-lined outfit and wearing blue footwear that complements his rugged attire. Behind him, several other adventurers are seen traversing rocky terrain on mountain biking. One individual, distinguished by a white beanie and goggles perched on their helmet, holds a snowboard while another dons traditional hiker boots to keep them stable despite the cold air. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 710459885578623, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-160528_73508193969950.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-160528_73508193969950.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,solo,
buchi,
huaming,,
KashiyaSakae,,
white hair, grey eyes, bekath, short hair, hair ornament with ribbon, white cape with golden trim, black armor suit with white pleated skirt, black thighhighs, black boots with high heels, black silk elbow gloves, single arm armor, middle breasts,,
looking_at_viewer, penis, pussy, bottomless, long_hair, symbol_in_eye, best quality, absurdres, uncensored, nipples, (((white background))), sound_effects, stomach_bulge, fang, amazing quality, (((standing sex))), blue_eyes, animal_ear_headwear, hat, open_mouth, grey_jacket, 1girl, official_alternate_costume, official_alternate_hairstyle, solo_focus, small_breasts, twin_braids, vaginal, navel, 1boy, blush, long_sleeves, very aesthetic, grey_headwear, hetero, sweat, beanie, red_hair, heart, leg_up,
Negative prompt: low quality,worst quality,text,signature,jpeg artifacts,bad anatomy,old,early,copyright name,watermark,artist name,signature,weibo username,purple background, simple background,</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02967_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02967_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
arona \(blue archive\), blue archive,
onita,
twilight, indoors, reflection, classroom, school desk, solo, halo, shoes, school chair, water world, hairband, chair, scenery, long sleeves, cloud, on desk, short hair, wide shot, broken wall, sitting, stack, skirt, from behind, bag, desk, blue hair, sneakers, evening, white choker, ocean, serafuku, choker, reflective water, school bag, cloudy sky, pink hair, water, shirt, sailor collar, blunt bangs, colored inner hair, bow hairband, horizon, blue shirt, window, multicolored hair, pleated skirt, sky, backlighting, sitting on desk, school uniform, white skirt, white hairband,
The image, created by the artist onita, depicts a serene and contemplative scene set within an indoor environment. A young girl with blue hair is seated at a desk in front of a large window that offers a breathtaking view of a cloudy sky during what appears to be either sunrise or sunset. The room has a soft, warm lighting that casts gentle shadows, enhancing the tranquil atmosphere. This image is part of the "Blue Archive" series and exemplifies onita's signature style, characterized by its detailed, almost surreal elements and expressive characters.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02989_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02989_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 2girls, multiple girls,
original,
fuzichoco,
hat, holding, planet, indoors, sleeveless, plant, clock, blue eyes, watering can, white hair, vase, blue hair, birdcage, space, cage, cat, earth \(planet\), sitting, closed eyes, flower, dress, chromatic aberration, smile, window, hair bun, bare shoulders, single hair bun, fish tank, sleeveless dress, looking at viewer, whale shark, air bubble, red flower, closed mouth, short hair, chain, bubble, fish, blue dress, manta ray, potted plant, animal print, arm up, eel, holding watering can, underwater, goldfish, water, starfish, shark print, fish print, bubble blowing,
This vibrant anime-style illustration shows a white-haired character in an ornate red and gold kimono sitting within what appears to be an underwater scene, surrounded by colorful fish, floating bubbles, and aquatic plants. The setting features metal framework structures that create a cage-like environment, all bathed in ethereal blue-green underwater lighting that gives the entire scene a magical, dreamlike quality. The character's expression is calm and serene, adding to the tranquil atmosphere of this underwater-themed environment. This artwork is created by the artist fuzichoco, known for their detailed and imaginative style, capturing a moment of peaceful interaction between the characters in an otherworldly setting.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02702_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02702_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
herta \(honkai: star rail\), honkai: star rail, honkai \(series\),
poki \(j0ch3fvj6nd\),
herta \(puppet\) \(honkai: star rail\), white shirt, brown hair, ..., embarrassed, hair flower, shirt, hair over mouth, flower, purple eyes, very long hair, long hair, solo, sleepwear, scrunchie, blush, doll joints, hand in own hair, strap slip, holding, hair ornament, speech bubble, simple background, purple jacket, purple scrunchie, joints, white background, holding own hair, purple flower, jacket, upper body, hair scrunchie, holding own wrist, light brown hair, sidelocks, wrist scrunchie,
A young girl with long, straight hair. her eyes are closed and she has a peaceful expression on her face. the overall style of the illustration is anime-style.
masterpiece, newest, ai-assisted, commentary, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-164935_684249266742885_01.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-164935_684249266742885_01.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, yuzuki choco, hololive, tyaya hayama, scenery, best qualiyt, demon horns, demon tail, pointy ears, black horns, horn ring, blue eyes, green eyes, blonde hair, long hair, gradient hair, pink hair, mago tyaya hayama, looking away, bat \(animal\), horns, official alternate costume, streaked hair, solo, multicolored hair, bare arms, laundromat, glowing horns, very long hair, tiles, blunt bangs, single side bun, braid, large breasts, lens flare abuse, virtual youtuber, lolita hairband, choker, demon wings, tile floor, cleavage, sidelocks, tail around own leg, breasts, laundry, frills, hair bun, wings, braided bun, twin braids, frilled choker, This image is a digital art piece by the artist tyaya hayama, showcasing characters from the Hololive series in a fantastical setting. The composition features several young women with long pink and blonde hair adorned with various hair ornaments, including braids, buns, horns, wings, chokers, ribbons, and sidelocks. She holds glowing lollipops and wears an expression that is slightly curious and playful as she looks to the side. The background is filled with mystical elements such as floating orbs and other ethereal items, enhancing the fantastical atmosphere of the scene. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 684249266742885, Size: 2048x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02734_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02734_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
ninomae ina'nis, hololive english, hololive,
ninomae ina'nis \(artist\),
branch, own hands together, blunt bangs, pointy ears, very long hair, long hair, gradient hair, dress, tentacle hair, beret, purple hair, dated, white dress, two-tone hair, animal ears, upper body, signature, pink flower, hair bun, mole, own hands clasped, single side bun, light smile, hat, sidelocks, multicolored hair, virtual youtuber, mole under eye, straight hair, orange hair, smile, plaid, flower, solo, alternate costume, blue eyes, looking at viewer, white hat, closed mouth, plaid dre,
a digital illustration by the artist ninomae ina'nis (artist), known for their distinctive and detailed style. The artwork features a character from the Hololive English series, specifically Ninomae Ina'nis, who is depicted with long, dark hair adorned with pink highlights and pointed ears. She wears an alternate costume that includes animal-like ears and a beret, adding to her whimsical appearance. The background is a soft gradient of light colors, subtly accentuating the character's features and creating a serene atmosphere.
masterpiece, newest, commentary, english commentary, self-portrait, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00521_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00521_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
hatsune miku,
yoneyama mai, rolua, (mika pikazo:0.9090909090909091), kase daiki, (jima:0.9090909090909091), (torino aqua:0.8264462809917354), (toosaka asagi:0.7513148009015777), sheya,
high contrast, light leak, light particles, depth of field, bokeh, lens flare, portrait, short bangs, solo, floating, curled up, hugging earth, from side, glowing, closed eyes, dark background, simple background, stars, alternative costumes, street style costume, black hoodie, fingerless gloves, black shorts, sneakers, amazing quality, absurdres
best quality, chromatic aberration, no lineart, film grain, hoodie, shoes, gloves, blurry, shorts, hugging object, black footwear, long hair,
a captivating digital illustration by artists Jima Aruki and Toosaka Asagi, showcasing the character Hatsune Miku from the Vocaloid series. She is dressed in a black hoodie and shorts, with her long hair flowing around her as she appears to be floating or dancing. The background is dark, creating a stark contrast that highlights Miku's figure. This piece is part of the "Newest Original" series by Yellow Bullet Vocaloid project.
best quality, very aesthetic, very aesthetic, masterpiece, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-234212_277890920871419_01_02_03_04.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-234212_277890920871419_01_02_03_04.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, koharu rikka, cevio, christina mijares, christina mijares, scenery, purple eyes, grey hair, short hair, double bun, hairclip, solo focus, caramel, jewelry, hair bun, hand on own cheek, collared dress, :o, sitting, chair, arm up, outdoors, cake, frills, food, looking to the side, blue ribbon, hair ornament, best qualiytur \(final drive\), dress, short dress, head rest, ribbon choker, frilled dress, tree shade, hand on own face, fence, sunlight, tray, open mouth, choker, cowboy shot, grass, earrings, black nails, food-themed earrings, short sleeves, sundress, scone, tiered tray, This image by the artist Christina Mirabell is part of the "Cevio with Eternal Symbology" series and features characters from these projects. The artwork depicts a charming outdoor scene set on a table adorned with plates, bowls containing food and utensils like forks. In the center of the image is Koharu Rikka herself, a character distinguished by her grey hair tied in twin buns with blue ribbons and matching earrings shaped like fried balls. She holds her hands near her cheek and appears to be blushing slightly as she looks down at her dessert with a smile. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 277890920871419, Size: 2048x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00519_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00519_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
hatsune miku,
yoneyama mai, rolua, ciloranko, sheya,
high contrast, light leak, light particles, depth of field, bokeh, lens flare, green hair, long hair, long neck, single ponytail, hair slicked back, disheveled hair, portrait, no bangs, solo, alternative costumes, black hoodie, fingerless gloves, smile, earrings, sidelighting, amazing quality, chromatic aberration, no lineart, film grain, black gloves, aqua theme, jewelry, looking at viewer, sidelocks, eyebrows hidden by hair, hair between eyes, hood down, hand up, light smile, gloves, close-up, blurry background, green eyes, closed mouth, hood, hoodie, blurry,
In this captivating image by the artist rolua (ciloranko), we see a close-up portrait of Hatsune Miku, a character from the Vocaloid series. She is dressed in her iconic black hoodie with red accents and fingerless gloves, adding a touch of edginess to her appearance. The background is blurred with light particles scattered around, creating a dreamy atmosphere that complements Miku's serene expression. This piece showcases rolua (ciloranko)'s distinctive style, characterized by its detailed and expressive portrayal of characters.
best quality, very aesthetic, masterpiece, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03076_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03076_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
izuna \(blue archive\), blue archive,
fukamiki kei, tail, halo, skin fang, solo, eyeshadow, medium breasts, short hair, skirt, makeup, hair ornament, pink halo, yellow eyes, fox tail, scarf, pom pom hair ornament, fox girl, river, pleated skirt, leaning forward, animal ears, fang, black hair, black skirt, one side up, nature, pink scarf, sleeveless, miniskirt, open mouth, looking at viewer, fox hair ornament, breasts, animal ear fluff, fox ears, outdoors, wading, pink eyeshadow, forest, pom pom \(clothes\), smile, waterfall, sunlight, white shirt, sleeveless shirt, sailor collar, shirt, tail raised, partially submerged, blush, water, cowboy shot, blue sailor collar, :d,
This image is a digital illustration by the artist masabodo, known for their detailed and vibrant style. The central character in the artwork is Izuna from the series "Blue Archive," depicted with fox-like features including pointed ears and a fluffy tail. Izuna is portrayed with her characteristic black hair adorned with pink ribbons, wearing a sailor-style outfit that includes a blue collar and skirt. The overall scene exudes a sense of tranquility and grace, capturing a moment of serene beauty in nature.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02957_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02957_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
feiqizi \(fkey\), original,
fkey,
scenery, barefoot, toes, long dress, collarbone, bare shoulders, outdoors, solo, sun hat, sundress, soles, animal ears, hat, long hair, closed mouth, hair between eyes, animal ear fluff, cat ears, twin braids, braid, sitting, red eyes, sunlight, dress, cat girl, fountain, plant, extra ears, looking to the side, water, white dress, feet, grey hair, crossed ankles, very long hair, plantar flexion, twintails, sleeveless dress, looking at viewer, dappled sunlight, sleeveless, blush, day, white headwear, from side, legs together, vines, stairs, pink eyewear, bare arms, full body, bare legs, low twintail,
In the image, a young girl with cat ears and fluffy tails sits gracefully in an outdoor setting. She is dressed in a light blue dress that contrasts beautifully with her hair. The background features lush greenery and plants, suggesting a serene garden or park atmosphere. The artwork is characterized by the artist fkey's detailed and vibrant style, capturing a moment of tranquility and charm.
masterpiece, newest, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00475_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00475_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
ayanami rei,
mika pikazo, wlop, ciloranko,
walking in flowers, looking back, close-up, chromatic aberration, bokeh, caustics, chromatic aberration abuse, extremely detailed CG, depth of field, WANKE, hat with flower, white jacket, smiling, (artist:amashiro.natsuki:0.9090909090909091), long hair, messy hair, amazing quality, flower, sunlight, blurry, jacket, from behind, long sleeves, looking at viewer, closed mouth, standing, smile, water, solo focus, water drop, blue hair, afloat, hat feather, petals on liquid, white headwear, red eyes, hand up, sidelighting, petals,
a captivating digital art piece created by the artist Mika Pikazo for their "Ayatino" series, also known as "original. She wears a white jacket adorned with red accents and holds her hand near her face in a contemplative pose. The scene is set against a dark backdrop, illuminated by soft light that casts gentle shadows and highlights the floating flowers around her. The overall composition exudes a sense of calm and introspection, characteristic of Mika Pikazo's style.
best quality, very aesthetic, masterpiece, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00560_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00560_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1boy, male focus,
dan heng \(honkai: star rail\), dan heng \(imbibitor lunae\) \(honkai: star rail\), honkai \(series\), honkai: star rail,
rorynans, animal, antlers, black hair, blue eyes, cleavage cutout, clothing cutout, detached sleeves, dragon, eastern dragon, elbow gloves, fingerless gloves, gloves, hair over shoulder, horns, leaf, long hair, maple leaf, motion blur, mullet, pectorals, pointy ears, sleeveless robe, toned, toned male, pectoral cleavage, earrings, upper body, green horns, looking at viewer, black gloves, single bare shoulder, jewelry, red eyeliner, makeup, chinese clothes, robe, solo focus,
a stunning digital illustration by the artist ravenpulse, known for their intricate and vivid style. The central figure in this artwork is Dan Heng from the series "Honkai: Star Rail. He is dressed in traditional Chinese-inspired attire, which includes a sleeveless robe with intricate patterns and cutouts that reveal his muscular physique. His outfit also features detached sleeves and fingerless gloves, adding to the overall elegance of his appearance. The background is blurred, creating a sense of motion and focusing attention on Dan Heng as he looks directly at the viewer. The setting appears to be an eastern-themed environment with hints of autumn leaves scattered around, enhancing the visual appeal of the piece. The overall composition highlights Dan Heng's strength and poise, capturing a moment of intense focus and readiness.
masterpiece, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-000104_1031686041350569_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-000104_1031686041350569_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, 1girl, shirahoshi, yamato \(one piece\), one piece, one piece, kinoko umaiyone, akemori kiko, scenery, best qualiyt, blue eyes, pink hair, very long hair, long hair, fish hair ornament, shell earrings, curled horns, red horns, multicolored horns, orange eyes, white hair, green hair, multicolored hair, aqua hair, gradient hair, blue hair, ponytail, high ponytail, hair stick, hoop earrings, earrings, kinoko umaiyone hashimoto yusuke, hair ornament, large breasts, cleavage, multicolored eye, hashimoto yusuke akemori kiko \(cosplay\), shell, floating hair, looking up, oni, breasts, jewelry, monster girl, yellow horns, closed mouth, cosplay, A female character with long white hair and horns on her head. the dress is decorated with purple and blue beads, giving it a magical and whimsical look. she has large orange hoop earrings hanging from her ears. in front of her, there is a smaller girl wearing an orange kimonos with red bows in her hair. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 1031686041350569, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02870_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02870_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
original,
natsu \(hottopeppa3390\),
outdoors, scenery, sitting, lens flare, winter, long hair, snow, pond, scarf, solo, porch, sun, snowing, lake, sunset, long sleeves, park bench, knees up, winter clothes, plaid scarf, black pantyhose, sky, water drop, cloud, profile, pantyhose, wooden floor, closed mouth, looking away, plaid, brown footwear, boots, mountainous horizon, from side, blush, red eyes, cloudy sky, sweater, white sweater, bench,
This image by the artist natsu (hottopeppa3390) depicts a serene winter scene at dusk. The artwork showcases a young girl with long, light-colored hair and striking red eyes seated on a wooden bench. She is dressed warmly in a white sweater and black pantyhose, her feet clad in brown boots. Her gaze is directed away from the viewer, adding an air of contemplation to the scene. The setting sun casts a soft glow over the snow-covered landscape, highlighting the tranquil lake and its reflection on the water's surface. The sky above is filled with clouds and light particles, creating a magical atmosphere. A lone figure stands in the distance, adding depth to the composition.
masterpiece, newest, resolution mismatch, md5 mismatch, photoshop \(medium\), commentary request, source larger, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-163418_1010047888126740_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-163418_1010047888126740_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, irene \(arknights\), arknights, waltervoid, scenery, grey eyes, scar across eye, grey hair, long hair, very long hair, scar on face, earrings, wings, hand in pocket, layered sleeves, white shirt, feet out of frame, jewelry, pink fire, grey sky, best qualiyt \(b518\), fire, building, capelet, lamppost, short over long sleeves, sword behind back, arm at side, short sleeves, weapon case, looking away, dress, outdoors, black capelet, weapon on back, head wings, parted lips, sky, white skirt, cloudy sky, cloud, long sleeves, cathedral, scarf on head, skirt, black dress, birdcage, standing, solo, shirt, In the image, a solitary figure named Irene from the Arknights series stands prominently in the foreground, exuding an air of mystique and elegance. Dressed in a striking black dress adorned with layered sleeves that extend past her fingers and wrists, she contrasts beautifully against the backdrop. Her grey hair is neatly braided into intricate buns, complementing her serious demeanor as she gazes to the side. This artwork is part of the Great Black-ish series and exemplifies Walter's detailed and dramatic style. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 1010047888126740, Size: 1536x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-225108_208730707976133_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-225108_208730707976133_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, sato reika, 22/7, kurumi komomo, scenery, red eyes, long hair, red hair, straight hair, hair flower, yasaibatake, (yasaibatakue:1.1), yasaibatake \(yasaibatakue\) kurumi komomo, best qualiytale school uniform, sailor collar, long sleeves, leaning forward, serafuku, black choker, school uniform, plaid skirt, medium hair, blurry background, pleated skirt, sunlight, sidelocks, ribbon choker, looking back, hair ornament, hand on own knee, solo, skirt, day, breasts, standing, outdoors, choker, bush, plaid clothes, flower, smile, blurry foreground, arm up, parted lips, from side, looking at viewer, shading eyes, A young girl with long pink hair and a white bow in her hair. she has red eyes and is looking up towards the sky with a peaceful expression on her face. the background shows trees and bushes, and there is another person visible on the right side of the image. the overall mood of the illustration is calm and serene. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 208730707976133, Size: 1536x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1070541.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1070541.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, frieren, sousou no frieren, long hair, long sleeves, looking at viewer, smile, solo, standing, striped clothes, very long hair, outdoors, water, day, holding, tree, blue sky, cloud, sky, capelet, brown footwear, dress, pantyhose, boots, grey hair, walking, animal, grass, building, elf, pointy ears, bird, cloudy sky, ship, watercraft, mountain, house, striped shirt, castle, tower, scenery, mountainous horizon, town, The image is a vibrant, animated illustration showcasing a scenic European townscape. The scene is observed from a vantage point on a stone wall, with the character of Frieren, identifiable by her white hair and pointy ears, stands prominently in the foreground, holding a suitcase. She wears a distinctive outfit with a white coat, golden trim, and a black and white striped collar. The town below is detailed with numerous buildings featuring a variety of architectural styles, including castle-like structures and residential homes, all with brown roofs. A river winds through the town, and green hills and mountains serve as a backdrop. The sky is a clear blue with a few clouds and a flock of birds in flight, enhancing the sense of depth and spaciousness. The overall style is reminiscent of traditional anime, with soft, warm lighting and detailed linework., masterpiece,highres,newest, general</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03122_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_03122_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
izuna \(blue archive\), blue archive,
mikoshi \(user wvyd4348\), fox ears, pink halo, gloves, holding gift, blurry, medium hair, gift, fox hair ornament, holding, partially fingerless gloves, blurry background, fang out, animal ears, smile, pouch, looking at viewer, black hair, one side up, valentine, closed mouth, black gloves, animal ear fluff, blush, fang, yellow eyes, :3, fox girl, halo, upper body, solo, brown hair, gift box, skin fang, fox shadow puppet, shirt, long sleeves, skirt, pink scarf, box, single glove, blurry foreground, white shirt, pleated skirt, hands up, sailor collar, blue skirt, scarf, depth of field, school uniform, heart-shaped box, serafuku, blue sailor collar,
This image is a vibrant and detailed illustration by the artist Kurohikage, showcasing a character from the series "Blue Archive. She has distinctive cat-like features, including pointed ears and fluffy ear tufts, adding to her unique charm. The background is filled with colorful elements, contributing to a lively and dynamic atmosphere that complements the character's energetic demeanor. The overall style of the artwork is highly detailed and expressive, capturing both the essence of the character and the series' aesthetic.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-233724_944013876753649_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-233724_944013876753649_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: (1girl:1.1), (arknights:1.1), (yakikarintou3:1.1), scenery, best qualiyt, dusk \(everything is a miracle\), (arknights\):1.1), (pointy ears:1.1), (dragon horns:1.1), (dragon tail:1.1), (red eyes:1.1), (black hair:1.1), (streaked hair:1.1), (very long hair:1.1), (green hair:1.1), (tassel earrings:1.1), floating, parted bangs, weapon, object namesake, solo focus, sky lantern, long pointy ears, outstretched arms, name connection, white pupils, tail through clothes, floating weapon, dragon girl, armor, holding lamp, paper lantern, sword in head, lantern festival, multicolored hair, tassel, armored dress, light green hair, bright pupil, floating sword, green skin, jewelry, gradient hair, gourd, long hair, floating object, colored tips, earrings, horns, chinese new year, In this detailed illustration by yakikavanglish3, we see a character named Muelsyse from the Arknights series set against an outdoor evening. The scene captures Muelsyse in a dynamic pose with her arm raised and holding a sword aloft, ready for action. Behind her, other characters, possibly enemies, can be seen walking towards the viewer. This artwork showcases yakikavanglish3's distinctive style, which blends detailed character design with vibrant colors to create a captivating scene from "Arknights: World Arise. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 944013876753649, Size: 1360x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-174043_494986375547008_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-174043_494986375547008_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, thief \(ragnarok online\), ragnarok online, scenery, best qualiyt, brown eyes, brown hair, short hair, long hair, mlin, (mlin1104:1.1), shading eyes, flat chest, crop top, red gloves, day, boot, dutch angle, bag, long sleeves, hooded capelet, saddle shoes, coat, outdoors, fur-trimmed boots, high heel boots, skirt set, arm up, open coat, standing on one leg, ruins, blurry foreground, expressionless, horse, backpack, solo focus, brown theme, standing on car, navel, cosplay, holographic monitor, fur trim, cityscape, animal ear hood, white skirt, blurry, capelet, mlin \(mlin1104\) susuchan \(cosplay\), medium bangs, midriff peek, closed mouth, red footwear, gloves, halo, a scene from the game "Ragnarok Online," showcasing two distinct characters set against a backdrop of ancient ruins and natural wonders. The main character, positioned prominently in the foreground, is depicted with striking brown hair, wearing an alternate costume that includes armor, animal ear hoods, and high boots. This character exudes strength and confidence, poised against the grandeur of their surroundings. The detailed environment suggests a historical or mythical setting, blending elements of nature, architecture, and possibly combat strategies from the "Ragnarok Online" series. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 494986375547008, Size: 1024x1536, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1071387.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1071387.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: multiple girls, inuyama aoi, kagamihara nadeshiko, oogaki chiaki, saitou ena, shima rin, sasaki mutsumi \(bee train\), yurucamp, blush, long hair, long sleeves, smile, standing, green eyes, open mouth, short hair, skirt, brown hair, outdoors, pink hair, black hair, day, holding, tree, blonde hair, full body, brown footwear, pantyhose, umbrella, boots, blue eyes, blue hair, glasses, twintails, hairband, shorts, sweater, grass, scarf, copyright name, pants, winter clothes, plaid clothes, plaid skirt, watermark, red-framed eyewear, knee boots, coat, black pantyhose, copyright notice, company name, twitter username, The artwork, by sasaki mutsumi \(bee train\), depicts a group of five girls from the anime series Yurucamp. They are standing in a snowy outdoor setting with two tents pitched behind them. From left to right, there's Aoi Inuyama, holding a small dog, Shima Rin with her hair in a bun, Kagamihara Nadeshiko, Chiaki Oogaki, and Saitou Ena wearing glasses. Each girl is dressed in winter clothing, including coats, scarves, and boots. The overall atmosphere is peaceful and suggests a camping scene. The sky is overcast, and the ground is covered in snow. The composition uses a high angle shot, giving a full view of the characters and their surroundings. The tents are a light brown and blue color, and there is some blurred background of trees and bushes., masterpiece,highres,newest, general</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-152936_1122802635229146_01_02(1).webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-11-152936_1122802635229146_01_02(1).webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: maoqiu gungun lai berriiiq, scenery, best qualiyt, arai beta, arai beta maoqiu gungun lai berriiiq, sunset, ship, pond, pagoda, waterfall, landscape, watercraft, reflective water, moon, no humans, night sky, egasumi, tower, flower, lens flare, cloud, animal print, ryoubu torii, riverbank, forest, red scarf, night, blue theme, japanese flag, outdoors, boat, tree, bird, star \(symbol\), scarf, sunburst background, starry sky, oekaki, new year, crane \(machine\), kikumon, building, star \(sky\), nature, tiger lily, reflection, lake, white flower, blue scarf, full moon, a serene and vibrant digital illustration by Maoqiu GungunLai, characterized by its intricate detailing and rich color palette. The scene depicts a traditional Japanese bridge set against a tranquil landscape of mountains, trees with red flowers, and water. On the other side, a lone tiger, standing alert beside one of the riverbank where the blue sky above meets the calm water below, adds an element of adventure and intrigue to the composition. The artist's style is evident in the use of detailed patterns on various parts of the landscape, enhancing its overall beauty and complexity. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 1122802635229146, Size: 1024x1360, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1076892.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1076892.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, souryuu asuka langley, rsef, neon genesis evangelion, long hair, looking at viewer, shirt, simple background, solo, two side up, orange hair, brown hair, hair between eyes, upper body, closed mouth, collared shirt, expressionless, white background, sketch, blue eyes, portrait, turtleneck, jacket, bodysuit, red jacket, red shirt, cropped torso, interface headset, plugsuit, red bodysuit, pilot suit, The artwork by rsef presents a painterly portrait of Asuka Langley Soryu from Neon Genesis Evangelion. She is depicted in a bust-up view with her head slightly turned. Asuka has vibrant orange hair, styled in two long pigtails with red hair accessories. Her blue eyes are gazing softly downwards. She wears her iconic red and orange plugsuit, with green accents visible, and a dark blue turtleneck underneath. The art style is characterized by expressive brushstrokes and a textured feel, giving the image a sense of dynamism. The background is plain white, focusing all the attention on Asuka. The artwork effectively captures Asuka's likeness and the signature aesthetic., masterpiece,highres,newest, general</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02800_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02800_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
original,
catzz,
people, road, neon palette, city, wet, blurry, coat, limited palette, long hair, bag, umbrella, night, rain, lights, black hair, transparent umbrella, transparent, long sleeves, arm at side, looking back, scenery, blurry foreground, depth of field, dark, backpack, outdoors, crosswalk, looking at viewer, english text, street, hooded coat, bokeh, city lights, solo focus, from behind, standing, building, hood down, hood, purple theme, cowboy shot, black eyes, holding, puddle, holding umbrella,
The image by the artist catzz depicts a solitary figure standing on a rain-soaked street at night, illuminated by neon lights. She holds an umbrella in her right hand, which is raised as if caught mid-stride. Her posture suggests she is walking along the crosswalk, with the wet pavement reflecting the glow of distant traffic signals and the city's ambient light. The overall atmosphere is one of solitude and quiet introspection amidst the urban landscape.
masterpiece, newest, mixed-language commentary, commentary, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-004804_291795535432825_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-004804_291795535432825_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, 1girl, fairy maid \(touhou\), eguchi sera, touhou, saki, hi ros3, hi ros3, scenery, best qualiyt, red eyes, blue eyes, short hair, brown hair, pants, frills, puffy sleeves, panties, blue dress, blue bowtie, open mouth, fairy wings, long sleeves, puffy long sleeves, german flag, frilled dress, sidelocks, bow, white footwear, fairy, full body, dress, apron, shirt, shoes, wings, collared shirt, juliet sleeves, short hair with long locks, bowtie, solo, hair between eyes, pink shirt, white collar, sign, holding, looking at viewer, maid apron, holding sign, pants under skirt, collar, maid headdress, fang, a captivating piece of digital art by hi ros3, characterized by its detailed and vibrant style. The central figure is an archer from the Touhou series, distinguished by her long brown hair with sidelocks and striking blue eyes. Her pose and attire suggest a sense of grace and readiness, capturing a moment of poise within this fantastical world. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 291795535432825, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-224956_293718624327641_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-224956_293718624327641_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, 1girl, hoshikawa lily, lily \(granblue fantasy\), zombie land saga, granblue fantasy, bbtnsapbem, scenery, yellow eyes, red eyes, light blue hair, long hair, star hair ornament, twintails, hair ribbon, pointy ears, blue eyes, blue hair, very long hair, hoshikawa lily \(cosplay\), hair ornament, pantyhose, black cape, ribbon, thighhighs, holding sword, snowflakes, looking at viewer, star \(symbol\), ahoge, holding staff, alternate costume, holding weapon, brown dress, doughnut, candy hair ornament, heart ahoge, weapon, closed mouth, holding, crossover, white footwear, cosplay, standing, food, best qualiyt \(dessert\), boots, heart, dress, sword, staff, zombie, standing on one leg, The image, created by the artist bbtnsapbem, features two animated characters in a vibrant and detailed setting. One character is a young girl with pink hair adorned with ribbons and ahoge, dressed in an alternate costume that includes boots and a flowing outfit with blue and purple accents. This artwork belongs to the "Granblue Fantasy" series and showcases bbtnsapbem's distinctive style characterized by intricate detailing, expressive poses, and vivid color palettes. The scene appears to be set in a fantastical environment, possibly during winter as indicated by the snow-like background. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 293718624327641, Size: 1024x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00492_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_00492_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
kafu \(cevio\),
hiten \(hitenkei\),
bokeh, depth of field, lens flare, (artist:wlop:0.9090909090909091), (artist:WANKE:0.9090909090909091), (artist:ciloranko:0.9090909090909091), backlighting, (artist:hiten:0.9090909090909091), chiaroscuro, vignetting, caustics, (artist:amashiro.natsuki:0.9090909090909091), smiling, chromatic aberration, white flowers, from above, bird's-eye view, vintage filter, among flowers, limited palette, white, field s of flowers, amazing quality, and it is a digital art piece by hiten \(hitenkei\), absurdres
masterpiece of the image, creating a vibrant and lively atmosphere., with a bird perched on her shoulder. the background is filled with colorful flowers and plants, making it a perfect hd wallpaper for any fan of the series., adding to the beauty of the scene. the colors are bright and vivid, making it a great choice for any fan.,
a digital artwork created by the artist hiten (hitenkei), showcasing a serene and somewhat surreal scene. At the center of the composition stands a young girl with light-colored hair, dressed in a flowing gown that seems to blend seamlessly with her surroundings. She is positioned on a stone platform, surrounded by an array of vibrant flowers and foliage in various shades of pink, purple, and green. The scene is bathed in soft backlighting, creating a sense of depth and tranquility as the girl appears to be gazing into the distance.
best quality, very aesthetic, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02882_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02882_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: multiple girls, 2girls,
kirisame marisa, hakurei reimu, hidden star in four seasons, touhou,
ke-ta,
bow, black hat, wide sleeves, tree, scarf, juliet sleeves, scenery, blunt bangs, shared clothes, torii, skirt, barefoot, yellow ascot, white apron, midriff peek, ascot, mountain, ribbon trim, snow, skirt set, puffy sleeves, red skirt, pink scarf, shared scarf, petals, hair bow, black dress, sky, waist apron, sitting, detached sleeves, outdoors, hat, hair tubes, hand up, white bow, red bow, long sleeves, wide shot, witch hat, ribbon-trimmed sleeves, dress, petticoat, blonde hair, looking at viewer, day, brown hair, sweater, brown eyes, sweater dress, apron, cherry blossoms, sitting on torii, snowflake print, floral print, hat bow, winter,
a vibrant illustration by the artist Ke-ta, featuring two characters from the Touhou series. The scene is set outdoors in what appears to be a snowy landscape with cherry blossom trees and mountains in the background. On the right side of the image stands another character wearing a witch's hat adorned with a red bow and a yellow scarf tied around her waist. She is dressed in an elegant outfit, including a black dress decorated with floral patterns, and she gazes towards the viewer with a slight smile on her face.
masterpiece, newest, doujinshi, scan, translation request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-232028_370116235876126_01.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-232028_370116235876126_01.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, sukonbu \(shirakami fubuki\), hololive, toumii00, scenery, best qualiyt, fox ears, animal ear fluff, fox tail, extra ears, hair between eyes, green eyes, aqua eyes, white hair, long hair, earrings, out of frame, ahoge, depth of field, blue dress, ribbon, tail, blurry foreground, solo focus, pov peephole, single braid, braided ponytail, wide-eyed, pentagram earrings, frown, dress, detached sleeves, hair ribbon, blurry background, sidelocks, blurry, animal ears, pov, fox girl, crossed arms, city, virtual youtuber, short dress, looking at viewer, jewelry, tail raised, braid, white ribbon, side ponytail, hikimayu, a character named Sukonbu (shirakami fubuki) from the Hololive series, illustrated by the talented artist toumii00. She has distinctive aqua eyes and long white hair with fox-like ears and fluff. Her pose is dynamic, suggesting she is looking directly at the viewer, adding a sense of engagement to the artwork. The background appears slightly blurry, drawing focus to Sukonbu s vivid and detailed attire and expressive features. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 370116235876126, Size: 1024x1536, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-013423_565463797077543_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-10-013423_565463797077543_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: scenery, best qualiyt, rei000531 nozakuma makarony, house, cityscape, parody, outdoors, railing, mountain, cloudy sky, statue of liberty, east asian architecture, architecture, fence, tree, bridge, grass, nature, day, skyline, blue sky, tower block, bird's-eye view, grasslands, spire, mount fuji, waterfall, lion dance, water, pagani zan \(laughing again\), cloud, plant, overgrown, moss, building, no humans, pagoda, celtic flag print, vuvuzela, riverbank, statue, temple, faux traditional media, chile, In this digital artwork by the artist Shanyeyuri, a majestic water palace stands tall amidst a verdant landscape. The temple is adorned with intricate designs and vibrant greenery, giving it an otherworldly appearance. This image blends elements from the series "Mother 3" by LAWRENCE NB", specifically "mother3: the most comprehensive" by NB. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 565463797077543, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-183119_869967301831594_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-183119_869967301831594_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, bmo, adventure time, quana, scenery, best qualiyt, short hair, long hair, blonde hair, star \(symbol\), horns, dress, colored skin, double exposure, expressionless, single horn, jewelry, nightgown, star print, earrings, red flower, tassel earrings, arm tattoo, black skin, bracelet removed, floating island, sitting in window, skyline, flower bed, bare shoulders, hair ornament, day and night, signature, flower, red eyes, solo, planetarium, sitting on window, bun cover, looking afar, wreckage, flower field, galaxy background, black horn, tassel, field, white nightgown, A woman sitting in a garden of red poppies. she has blonde hair tied up in a ponytail and is looking off into the distance with a peaceful expression on her face. the background is a dark blue sky with stars twinkling in the night. there are several orange balloons floating around the woman, adding to the whimsical and dreamy atmosphere of the scene. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 869967301831594, Size: 1536x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02944_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02944_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
holo, spice and wolf,
shoichi \(ekakijin\),
full body, anniversary, sky, outdoors, wheat, wolf ears, brown hair, smile, fur trim, sleeveless, sun glare, long hair, solo, boots, sunlight, tail, animal ears, pouch, mountainous horizon, cart, wolf tail, wolf girl, sleeveless jacket, skirt, day, scenery, nature, blush, blue sky, mountain, standing, brown footwear, looking at viewer, jacket, wind lift, red eyes, wind, wheat field, very long hair, fur-trimmed boots, cloud, cloudy sky, hand on own hip, thigh boots, looking back, forest, floating island, red skirt, fur-trimmed jacket, floating city, from behind, floating hair, thighhighs,
In this vibrant and whimsical artwork by the artist shoichi (ekakijin), a character from the series "Spice and Wolf" stands prominently in a field of golden wheat. The central figure, Holo, is depicted with her signature long brown hair cascading down her back, and she sports wolf-like ears and a tail, adding an element of fantasy to her appearance. Her red eyes sparkle as she looks back over her shoulder, smiling warmly at the viewer. The sky above is a clear blue, dotted with fluffy white clouds, creating a serene backdrop for this enchanting scene.
masterpiece, newest, official art, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-220404_87459800149096_01_02.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-220404_87459800149096_01_02.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: riko \(korikori\), scenery, riko, (korikori:1.1), blue sailor collar, open mouth, day, serafuku, black hair, skirt, ribbon-trimmed legwear, sunflower hair ornament, sitting, hair flower, hairclip, zettai ryouiki, cat on person, smile, on lap, cloud, thighhighs, flower, blush stickers, brown footwear, holding spoon, hair ornament, building, blue sky, on head, stool, crop top, pleated skirt, sailor collar, best qualiyt \(meme\), straw hat, animal on head, white thighhighs, navel, sky, hat, spoon, meme, :t, foodgasm, parody, midriff peek, outdoors, ribbon trim, school uniform, blue skirt, closed eyes, In the vibrant and whimsical style characteristic of artist riko (korikori), this image captures a delightful scene from an animated series or project. At the forefront, a character with black hair is prominently featured. She appears to be holding two objects: one is a yellow fruit, possibly representing the "Strawberry Cake," and she carries another smaller yellow fruit, adding a playful touch of whimsy to the scene. The backdrop features a serene blue sky dotted with fluffy clouds and distant buildings, enhancing the overall cheerful atmosphere of this charming illustration from an "Ambitious Episode!" project by Riko Zelgin. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 87459800149096, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02726_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02726_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
fu xuan \(honkai: star rail\), honkai \(series\), honkai: star rail,
yajuu,
earrings, jewelry, arm up, tassel, solo, bird, pink hair, bare shoulders, parted bangs, detached sleeves, pink flower, hair ornament, cherry blossoms, holding, white pantyhose, looking at viewer, necklace, forehead jewel, long hair, very long hair, hair spread out, hair stick, short sleeves, pantyhose, floating hair, closed mouth, sidelocks, neck tassel, hair rings, flower, tassel hair ornament, dress, standing, white dre, pink eyes,
In this enchanting illustration by the artist yajuu, a character from the series "Honkai: Star Rail" stands amidst a vibrant display of cherry blossoms. The character, known as Fuyu Fu Xuan (Chinese), is depicted with long, flowing pink hair adorned with intricate hair ornaments and tassels. She wears traditional Chinese attire, including a dress with detached sleeves and white pantyhose, complemented by jewelry such as necklaces and earrings. Her eyes are closed, and she has a serene expression on her face, looking directly at the viewer. Fuyu Fu Xuan is surrounded by cherry blossom branches that burst with red flowers, creating a beautiful contrast against her pink attire. The background features a soft gradient of purple hues, further enhancing the ethereal atmosphere. A bird can be seen flying in the distance, adding to the sense of tranquility and harmony with nature. The overall composition is characterized by yajuu's signature style, which combines detailed line work with vivid colors and a dreamy ambiance.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-214635_1051482950769510_01.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-214635_1051482950769510_01.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, kirasaka sayaka, strike the blood, nk sita, scenery, green eyes, brown hair, long hair, very long hair, ponytail, high ponytail, hair ribbon, moorejones8 nk sita, closed mouth, hair ornament, skirt, shading eyes, hairclip, neck ribbon, sleeve cuffs, bag, sky, smile, green sky, mountainous horizon, railing, handbag, pleated skirt, outdoors, cowboy shot, long bangs, cloud, best qualiytgourme, looking at viewer, school uniform, short sleeves, grass, cloudy sky, solo focus, ribbon, contrail, light rays, serafuku, red ribbon, standing, sailor collar, white ribbon, blue skirt, This image is a vibrant illustration by the artist nk sita, known for their distinctive and expressive style. She appears to be deep in thought, her hand resting on her head as she gazes intently ahead. Behind her stands a lush landscape filled with verdant fields and rolling hills under a clear sky, enhancing the peaceful atmosphere of the scene. The artwork captures a moment of contemplation or perhaps decision-making within the context of "Strike the Blood. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 1051482950769510, Size: 1024x1360, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02913_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02913_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
furina \(genshin impact\), genshin impact,
miao shang san xiao,
full body, short hair, drop-shaped pupils, sky, oil-paper umbrella, day, dress, blue hair, blue theme, hair ornament, sitting, colored bangs, holding, white dress, symbol-shaped pupils, tree, flower, snow, tassel, solo, white hair, pumps, shoes, breasts, wide sleeves, mountain, blue pupils, heterochromia, hair flower, architecture, streaked hair, blue shoes, holding umbrella, alternate costume, blue eyes, looking at viewer, umbrella, high heels, lake, closed mouth, outdoors, bare shoulders, multicolored hair, pine tree, scenery, china dress, bare legs, pavilion, chinese clothes, medium breasts, east asian architecture, blue sky, long sleeves,
In this captivating digital illustration by the artist miao shang san xiao, a character from the series "Genshin Impact" is depicted in an ethereal setting. The central figure, identifiable as Furina (2024), is elegantly dressed in traditional Chinese attire with flowing blue and white garments that blend seamlessly with the surrounding environment. She sits gracefully on a wooden structure amidst a serene landscape of snow-covered mountains and a tranquil lake, creating an atmosphere of calm and contemplation. The scene is further enhanced by delicate cherry blossom petals falling around her, adding to the dreamy ambiance.
masterpiece, newest, safe, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-205145_960573175128065_01_02_03_04.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-205145_960573175128065_01_02_03_04.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, 1girl, yamada tae, ajna \(indivisible\), zombie land saga, indivisible, igarashi tsukiyo \(tukiyo320\), scenery, red eyes, hair between eyes, black hair, very long hair, brown eyes, short hair, brown hair, hair ornament, igarashi tsukiyo, (tukiyo320:1.1), painting \(action\), medium hair, night, sitting, kanzashi, geta, haori himo, sash, blush, holding paintbrush, obi, looking at another, holding, light smile, long skirt, fireworks print, sky, tentacle hair, paintbrush, treehouse, closed mouth, skirt, long hair, faux traditional media, japanese clothes, cloud, alternate form, sitting in window, purple sash, squidbeak splatoon, dark-skinned female, dark skin, red kimono, blue kimono, best qualiytg, In the image by igarashi tsukiyo (sdrsyou320), known for their distinctive and whimsical style, we see a captivating scene from the series "Zombie Land Saga" inspired by Studio Ghibli. The composition centers on three main characters perched on treehouses within a magical forest backdrop adorned with autumn leaves in hues of orange and red. The artist has utilized the fine quality to depict these whimsically dressed figures amidst the natural, mystical setting, capturing both fantasy and cultural elements in this enchanting scene from the "Indivisest" series within the franchise. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 960573175128065, Size: 1360x1024, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-235803_545758812501707_01_02_03.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-09-235803_545758812501707_01_02_03.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, shiny chariot, little witch academia, donpun \(av502\), scenery, best qualiyt, red eyes, hair between eyes, red hair, short hair, long hair, kotori124589 yepislynnette donpun, looking at viewer, black capelet, food, bowtie, outdoors, solo, red bow, av502253, sky, field, food in mouth, wind, looking to the side, cloudy sky, from side, standing, bow, closed mouth, expressionless, skirt, lollipop, bookshelf, dusk, indoors, candy, skirt set, day and night, yellow sky, light rays, sunflower, flower field, blush, cowboy shot, book stack, blue skirt, long sleeves, sunset, flower, cloud, sunflower field, book, a vibrant digital illustration by the artist Donpun (Av502), known for their detailed and whimsical style. " Shiny Chariot stands confidently in front of an intricate, multi-tiered structure adorned with blue accents, suggesting a scene from one of her series or stories. She is dressed in a flowing capelet with gold trimmings that drape elegantly over her shoulders. Her hair and attire are styled neatly, and she exudes an air of adventure and determination as she stands amidst a lush landscape of tall grass and vivid yellow flowers under the warm, glowing sunset. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 4.0, Seed: 545758812501707, Size: 1024x2048, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02692_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02692_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
inubashiri momiji, touhou,
matsuda \(matsukichi\),
red eyes, profile, grey hair, upper body, tassel, painterly, japanese clothes, animal ears, short hair, wolf ears, tokin hat, detached sleeves, hat, simple background, solo, pom pom \(clothes\), close-up, messy hair, closed mouth, expressionless, breasts, character name, eyelashes, from side, faux traditional media, white background, nose, turtleneck, headphone, medium breasts, looking away, shaded face, bob cut, lips, bare shoulders,
This image is a striking piece of digital art by the artist Matsuda (Matsukichi), known for their distinctive style within the Touhou series. The central figure in this portrait is Inubashiri Momiji, depicted with her signature features including short grey hair adorned with a red tassel and striking red eyes. She wears traditional Japanese attire, including a tokin hat that adds an air of mystery to her appearance. Her expression is serious and introspective as she gazes off to the side, creating a sense of depth and intrigue in the composition.
masterpiece, newest, photoshop \(medium\), commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02888_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02888_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: multiple girls, 2girls,
kirisame marisa, hakurei reimu, hidden star in four seasons, touhou,
ke-ta,
bow, black hat, wide sleeves, tree, scarf, juliet sleeves, scenery, blunt bangs, shared clothes, torii, skirt, barefoot, yellow ascot, white apron, midriff peek, ascot, mountain, ribbon trim, snow, skirt set, puffy sleeves, red skirt, pink scarf, shared scarf, petals, hair bow, black dress, sky, waist apron, sitting, detached sleeves, outdoors, hat, hair tubes, hand up, white bow, red bow, long sleeves, wide shot, witch hat, ribbon-trimmed sleeves, dress, petticoat, blonde hair, looking at viewer, day, brown hair, sweater, brown eyes, sweater dress, apron, cherry blossoms, sitting on torii, snowflake print, floral print, hat bow,
This image, created by the artist Ke-ta, is a charming illustration that captures a serene winter scene. The artwork features two characters set against a picturesque backdrop of snow and cherry blossoms. The overall composition of the image is balanced, with each character and element contributing to a harmonious narrative. The use of color and detail in the illustration adds depth and warmth to the winter scene.
masterpiece, newest, doujinshi, scan, translation request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02554_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02554_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
shu \(arknights\), arknights,
ba gu ya rou, purple flower, dragon girl, white flower, blue flower, holding, jewelry, grey jacket, green flower, flower, light particles, off shoulder, holding flower, beads, jacket, hair intakes, long hair, horns, long sleeves, hair between eyes, solo, brown pupils, pointy ears, colored extremities, earrings, bare shoulders, dragon horns, grey hair, yellow flower, light smile, necklace, closed mouth, blonde hair, green eyes, looking at viewer,
a digital illustration by the artist yinghua syrena, known for their detailed and vibrant style. The central figure in the artwork is Shu from the series Arknights. She wears earrings and has horns protruding from her head, adding to her mystical appearance. Surrounding her are various flowers and leaves in shades of blue, purple, and green, creating a harmonious and enchanting composition that emphasizes the character's ethereal beauty.
masterpiece, newest, chinese commentary, commentary, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/14B2B2490B686F1F1419AF5236A3C6EC.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/14B2B2490B686F1F1419AF5236A3C6EC.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1boy,
chosen undead,
marcus \(rnarccus\), rei \(sanbonzakura\), wlop, rolua, yoneyama mai,
knight, helmet, slim, topless, mature male, solo, dark skin, muscular, bara, green trousers, cowboy shot, multicolored fire, blue fire, red fire, rainbow fire, flame magic, high contrast, realistic, 3d, faceless, depth of field, lens flare, bokeh, abs, abnormals, rainbow gradient, flaming arm, muscular male, blurry, backlighting, red eyes, faulds, dark-skinned male, fire, fireball, standing, armor,
A man in a futuristic suit with a helmet and armor. he is standing in front of a dark background with a rainbow-colored light shining down on him. the man appears to be in a battle-ready stance, ready for battle. the image has a surreal and dynamic feel to it.
masterpiece, best quality, newest</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072811.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072811.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, misono mika, reneua, blue archive, blue bow, blush, bow, breasts, long hair, looking at viewer, simple background, smile, solo, standing, very long hair, :d, open mouth, hair ornament, pink hair, ribbon, head tilt, capelet, full body, white background, dress, frills, pantyhose, wings, white dress, high heels, black footwear, yellow eyes, scrunchie, flower, white ribbon, hair bun, halo, frilled dress, white wings, angel wings, white pantyhose, white capelet, feathered wings, hair flower, low wings, single side bun, wing ornament, pink halo, The artwork, by reneua, features a vertical full-body illustration of Misono Mika from the Blue Archive series. The character is depicted with long, flowing pink hair and golden eyes, giving her a gentle and angelic appearance. She wears a white dress with blue accents, including bows and trim. The dress is adorned with gold embellishments, and her outfit includes a small capelet. She sports white pantyhose and black high heels. Large, white wings with celestial details like moons, stars, and planets extend behind her. Above her head is a halo, and her expression is cheerful and welcoming. The background is plain white, emphasizing the character. The artwork has a clean, anime-inspired aesthetic., masterpiece,highres,newest, general</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072664.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/1072664.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 2girls, multiple girls, arona \(blue archive\), plana \(blue archive\), kellymonica02, blue archive, blush, long hair, long sleeves, looking at viewer, sailor collar, school uniform, serafuku, shirt, simple background, smile, very long hair, short hair, skirt, hair ribbon, pink hair, ribbon, pleated skirt, closed mouth, neckerchief, full body, white background, loafers, shoes, pantyhose, blue eyes, blue hair, black footwear, black skirt, grey hair, open clothes, hairband, hair over one eye, braid, white hair, grey eyes, black hairband, jacket, white sailor collar, white ribbon, white bow, sneakers, choker, white footwear, white neckerchief, multicolored hair, halo, single braid, black eyes, black pantyhose, black serafuku, white skirt, feathered wings, eyes visible through hair, side braid, black sailor collar, black choker, black coat, white choker, colored inner hair, red halo, The image, created by kellymonica02, features two anime-style female characters. The characters, seemingly from the *Blue Archive* series, are set against a clean white background. On the left, there's a girl identified as likely being Arona, with short blue hair, bright blue eyes, and a blue halo. She wears a blue cropped jacket, white sailor skirt, and white sneakers. Her facial expression is a gentle smile. On the right, a second girl, perhaps Plana, has long white hair, a red halo, and is dressed in a dark uniform consisting of a black jacket, a black skirt, and black tights. Her expression is calm. Both characters are in a dynamic pose, seemingly mid-motion or floating. The artwork conveys a sense of motion and camaraderie between the characters., masterpiece,highres,newest, general</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-201122_734221260669565_01_02_03_04.webp" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/hdm-1024px-2025-08-12-201122_734221260669565_01_02_03_04.webp" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl, harmony's clownfish \(splatoon\), splatoon \(series\), ichi \(nuksun12\), scenery, green eyes, blue eyes, pink hair, tentacle hair, green hair, gradient hair, long hair, two-tone hair, very long hair, striped headwear, otoyuki banmoku ichi, (nuksun12:1.1), blue pupils, blunt bangs, sideways hat, tropical fish, skindentation, butterflyfish, sun hat, closed mouth, barefoot, looking at viewer, baseball cap, clownfish, knees together feet apart, solo focus, multicolored hair, outdoors, tropical fish and onigirbewa \(module\), best qualiyt \(song\), thigh strap, striped clothes, hat, skirt tug, colored eyelashe, ocean, The image by the artist ichi (ichieksounksin12), known for their vibrant and whimsical style, captures a lively scene from the Splatoon series. The central figure is Harmony's Clownfish (Sweeper 2) with her distinctive clownfish attire: long pink hair with white accents, a multicolored headband, and a blue bow tied at one of the tails of the fish-like character. The ocean setting features palm trees under a partly cloudy sky, creating an enchanting tropical atmosphere that complements Harmony's cheerful expression as she gazes directly at the viewer. This charming piece is part of the larger series "Gravity Dancer 2" by the talented artists Ichi (ichiiesounutsushi), showcasing a playful interaction between Harmony and her marine-inspired creations in a picturesque underwater environment. masterpiece, great quality, sfw<br><br>
Negative prompt: unknownlow quality, worst quality, text, signature, jpeg artifacts, bad anatomy, old, early, copyright name, watermark, artist name, signature, weibo username, mosaic censoring, bar censor, censored, text, speech bubbles, doll, character doll, hair intake, realistic, 2girls, 3girls, multiple girls, crop top, cropped head, cropped, large breasts, nsfw<br><br>
Steps: 35, Sampler: euler_simple, CFG Scale: 1.0, Seed: 734221260669565, Size: 1024x1536, Model hash: f7e7841239, Model: hdm-xut-340M-1024px-9kstep-note, Version: ComfyU</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02880_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02880_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
original,
natsu \(hottopeppa3390\),
outdoors, scenery, sitting, lens flare, winter, long hair, snow, pond, scarf, solo, porch, sun, snowing, lake, sunset, fox girl, brown skirt, fox ears, tree, stone lantern, white socks, animal ears, japanese clothes, fox tail, kitsune, tail, red eyes, east asian architecture, stairs, full body, sunlight, haori, bare tree, shrine, black hair, from side, cloudy sky, skirt, mountain, socks, black footwear, building, cloud, animal ear fluff, looking away, railing, sky, blue scarf, lantern, architecture, closed mouth, blunt bang, long sleeve,
A traditional japanese house with a wooden porch and stairs leading up to it. the sky is filled with fluffy white clouds, creating a peaceful and serene atmosphere. on the right side of the image, there are two foxes sitting on the porch steps, facing each other. the overall color palette is soft and muted, giving the image a dreamy and whimsical feel.
masterpiece, newest, resolution mismatch, md5 mismatch, photoshop \(medium\), commentary request, source larger, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02997_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02997_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 2girls, multiple girls,
original,
fuzichoco,
hat, holding, planet, indoors, sleeveless, plant, clock, blue eyes, watering can, white hair, vase, blue hair, birdcage, space, cage, cat, earth \(planet\), sitting, closed eyes, flower, dress, chromatic aberration, smile, window, hair bun, bare shoulders, open mouth, globe, star \(symbol\), potted plant, :o, cleavage, bookshelf, thighhighs, blunt bangs, single side bun, from behind, looking back, blue dress, witch hat, detached sleeves, holding flower, frills, long hair, witch, sleeveless dress, breasts, white legwear, book, blue headwear, medium breasts, bird,
In the whimsical and detailed style characteristic of the artist fuzichoco, this image portrays a fantastical scene within an ornate room. A young woman with long, flowing blue hair and matching eyes sits gracefully on the floor, her posture relaxed yet poised. She is dressed in a light-colored outfit that contrasts beautifully with the rich hues of the room around her. Above her, an intricately designed birdcage hangs from the ceiling, adding an element of absurdity and commentary to the scene. The overall composition exudes a sense of tranquility and charm, blending elements of fantasy with everyday life in fuzichoco's distinctive style.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02400_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02400_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
original,
momozu komamochi,
dragon-chan \(momozu komamochi\), bow, black bow, black thighhighs, red bow, sailor dress, ahoge, tail, black bowtie, hair bow, long sleeves, white background, blue bow, solo, simple background, blush, blonde hair, hair ornament, thighhighs, dragon girl, no shoes, heart, chibi only, asymmetrical legwear, dragon horns, dragon wings, wings, black horns, white dress, closed mouth, long hair, horns, dragon tail, pointy ears, uneven legwear, chibi, dress, bowtie, hairclip, red eye,
a charming piece of artwork created by the artist momozu komamochi, known for their whimsical and detailed style. It features an original character with long blonde hair adorned with a black bow and small horns on her head, giving her an otherworldly appearance reminiscent of a dragon girl. She is dressed in a white sailor dress that contrasts beautifully with her red eyes and the dark background behind her. The overall composition is balanced and pleasing, showcasing the artist's skill in creating endearing and visually appealing characters.
masterpiece, newest, commentary request, absurdres</div>
</div>
</div>
<div class="slide">
<div class="slide-image-container">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02793_.png" class="slide-background-image">
<img src="https://huggingface.co/KBlueLeaf/HDM-xut-340M-anime/resolve/main/images/samples/ComfyUI_02793_.png" class="slide-fitted-image">
</div>
<div class="slide-content" alt="">
<div class="slide-description">Prompt: 1girl,
nagisa \(kantoku\), original,
kantoku,
sunlight, black hair, cloud, house, scenery, looking at viewer, solo, retaining wall, two side up, barefoot, pleated skirt, day, smile, alley, school uniform, skirt, blue sky, stairs, outdoors, architecture, sky, dappled sunlight, ocean, sitting, yellow eyes, bare legs, blush, long hair, tree shade, book, shade, shirt, water, tree, serafuku, blouse,
In this image by the artist Kantoku, a young girl with long black hair tied into twin ponytails is captured in an alleyway. Her gaze is directed downwards, and she has a slight on her cheeks, suggesting a moment of contemplation or shyness. The setting appears to be a quaint, somewhat cluttered street lined with old buildings, some of which show signs of age and wear. The overall atmosphere of the image is serene yet slightly melancholic, highlighting the girl's introspective mood amidst an urban environment.
masterpiece, newest, scan, photoshop \(medium\), absurdres</div>
</div>
</div>
</div>
</div>
## Quick Start
***Read [Usage Hint] section after install the model***
***READ IT***
***READ IT***
***READ IT***
* Use official gradio ui: https://github.com/KohakuBlueleaf/HDM
* Follow the readme in this repository
* Use comfyui loader node: https://github.com/KohakuBlueleaf/HDM-ext
* Install this repository as comfyui custom node
* Use the HDM-loader node with provided safetensors file
* Use diffusers pipeline:
1. Install hdm library from [github repo](https://github.com/KohakuBlueleaf/HDM)
```bash
git clone https://github.com/KohakuBlueleaf/HDM
cd HDM
# fused: xformers fused swiglu/attention
# liger: liger-kernel fused swiglu
# tipo : tipo prompt gen system for official UI
# win : windows specific (all windows user should add this)
# finetune: install lycoris-lora for finetune with lycoris
pip install -e .[tipo]
## For windows user: pip install -e .[win,tipo]
```
2. Than use pipeline from hdm
```python
import torch
from hdm.pipeline import HDMXUTPipeline
torch.set_float32_matmul_precision("high")
pipeline = (
HDMXUTPipeline.from_pretrained(
"KBlueLeaf/HDM-xut-340M-anime",
trust_remote_code=True
)
.to("cuda")
.to(torch.float16)
)
images = pipeline("1girl....", "").images
```
## Usage Hint
* Prompting:
* Use Danbooru tag + Natural Language Description
* For "tags", use "danbooru tag" ONLY.
* For tags, use comma seperated tag sequence, "without underscore"
* "1girl long_hair" -> "1girl, long hair"
* Make prompt as detail as possible
* TIPO is highly recommended to use here!!!
* Sampling settings:
* CFG scale: 2~4
* Inference steps: at least 8, works best in 16~32
* For 1024px model, recommend following resolution (WxH):
* 1024xK where K >= 1024
* WxH where W > H, W\*H >= 1024\*1024, H <= 1024
* For example: 1024x1536(1:2), 1440x800(16:9), 1472x736(2:1), 1280x960(4:3)
* Don't know where to start? New to danbooru-tag style prompting?
* Check danbooru.donmai.us, find any image you feel good, copy its tag!
* Remember to apply the transformation mentioned above.
### Example prompt format
```
1girl,
izuna (blue archive), blue archive,
fukamiki kei, tail, halo, skin fang, solo, eyeshadow, medium breasts, short hair, skirt, makeup, hair ornament, pink halo, yellow eyes, fox tail, scarf, pom pom hair ornament, fox girl, river, pleated skirt, leaning forward, animal ears, fang, black hair, black skirt, one side up, nature, pink scarf, sleeveless, miniskirt, open mouth, looking at viewer, fox hair ornament, breasts, animal ear fluff, fox ears, outdoors, wading, pink eyeshadow, forest, pom pom (clothes), smile, waterfall, sunlight, white shirt, sleeveless shirt, sailor collar, shirt, tail raised, partially submerged, blush, water, cowboy shot, blue sailor collar, :d,
This image is a digital illustration by the artist masabodo, known for their detailed and vibrant style. The central character in the artwork is Izuna from the series "Blue Archive," depicted with fox-like features including pointed ears and a fluffy tail. Izuna is portrayed with her characteristic black hair adorned with pink ribbons, wearing a sailor-style outfit that includes a blue collar and skirt. The overall scene exudes a sense of tranquility and grace, capturing a moment of serene beauty in nature.
masterpiece, newest, absurdres
```
Or with placeholder:
```
<|special|>,
<|characters|>, <|series|>,
<|artist|>,
<|general content tags|>,
<|natural language|>.
<|quality|>, <|rating|>, <|meta|>
```
***NOTE***: In ComfyUI, you ***SHOULD*** use backslash for ALL the bracket. for example `izuna (blue archive)` -> `izuna \(blue archive\)`. To ensure TIPO to works correctly and the bracket will be sent to the model.
## Model Spec
***HDM-XUT overview***
![](images/HDM-overview.png)
***XUT arch details***
![](images/XUT-arch.png)
### Model Setup
* 343M XUT diffusion
* 596M Qwen3 Text Encoder (qwen3-0.6B)
* [EQ-SDXL-VAE](https://huggingface.co/KBlueLeaf/EQ-SDXL-VAE)
* Support 1024x1024 or higher resolution
* 512px/768px checkpoints provided
* Sampling method/Training Objective: Flow Matching
* Inference Steps: 16~32
* Hardware Recommendations: any Nvidia GPU with tensor core and >=6GB vram
* Minimal Requirements: x86-64 computer with more than 16GB ram
* 512 and 768px can achieve reasonable speed on CPU
### Dataset
* [Danbooru2023](https://huggingface.co/datasets/KBlueLeaf/danbooru2023-webp-4Mpixel) (around 7.6M images, latest id around 8.2M)
* Curated [Pixiv set](https://huggingface.co/datasets/Amber-River/Pixiv-2.6M) (around 700k images)
* Private pvc figure photos. (less than 50k images)
### Training
| Stage | 256² | 512² | 768² | 1024² |
|---|---|---|---|---|
| Dataset | Danbooru 2023 | Danbooru2023 + extra* | - | curated** |
| Image Count | 7.624M | 8.469M | - | 3.649M |
| Epochs | 20 | 5 | 1 | 1 |
| Samples Seen | 152.5M | 42.34M | 8.469M | 3.649M |
| Patches Seen | 39B | 43.5B | 19.5B | 15B |
| Learning Rate (muP, base_dim=1) | 0.5 | 0.1 | 0.05 | 0.02 |
| Batch Size (per GPU) | 128 | 64 | 64 | 16 |
| Gradient Checkpointing | No | Yes | Yes | Yes |
| Gradient Accumulation | 4 | 2 | 2 | 4 |
| Global Batch Size | 2048 | 512 | 512 | 256 |
| TREAD Selection Rate | 0.5 | 0.5 | 0.5 | 0.0 |
| Context Length | 256 | 256 | 256 | 512 |
| Training Wall Time | 174h | 120h | 42h | 49h |
## Limitations
* Due to constrained training budget and model size:
* This model require user to provide highly detailed and well structured prompt to works well.
* Users are highly recommended to use TIPO
* This model are not good at generate good detail structure or not well-annotated concept (such as hands or special ornaments)
* This model can only generate anime-style images for now due to dataset choice.
* A more general T2I model is under training, stay tuned.
* This model are capable to generate lot of different anime-like style but it's hard to trigger specific art style stably. It is recommend to try different combination of content, meta, artist tag to achieve different art style.
## License
This project is still under developement, therefore all the models, source code, text, documents or any media in this project are licensed under `CC-BY-NC-SA 4.0` until the finish of development.
For any usage that may require any kind of standalone, specialized license. Please directly contact [email protected]