DashAnimeXL V1
![image2](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00024_.png)
![image3](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00027_.png)
![image4](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00044_.png)
![image5](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00055_.png)
![image6](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00071_.png)
![image7](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00087_.png)
![image8](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00099_.png)
![image9](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00115_.png)
![image10](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00121_.png)
![image11](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00129_.png)
![image12](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00137_.png)
![image13](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00149_.png)
![image14](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00153_.png)
![image15](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00192_.png)
![image16](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00259_.png)
![image17](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00267_.png)
![image18](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00296_.png)
![image19](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00306_.png)
![image20](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/ComfyUI_temp_zvkev_00330_.png)
![image21](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00414_.png)
![image22](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00418_.png)
![image23](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00420_.png)
![image24](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00421_.png)
![image25](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00423_.png)
![image26](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/CR_00424_.png)
![image27](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/368340.png)
![image28](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/368341.png)
![image1](https://content.dashtoon.ai/assets/DashAnimeXL_Blog/367983.png)
DashAnimeXL V1 is a diffusion-based text-to-image generative model. The model is a finetune of SDXL by the research team at Dashtoon. Please see our blog for more details.
Model Description
- Developed by: Dashtoon
- Model type: Diffusion-based text-to-image generative model
- License: CreativeML Open RAIL++-M License
- Model Description: DashAnimeXL V1 is engineered to generate high-quality anime images from textual prompts. It features enhanced hand anatomy, better concept understanding, and prompt interpretation.
- Summary: This model generates images based on text prompts. It follows the same architecture as Stable Diffusion XL.
- Finetuned from model: SDXL
Using the model with 🧨 Diffusers
To use DashAnimeXL V1, install the required libraries as follows:
pip install diffusers --upgrade
pip install transformers accelerate safetensors
Example script for generating images with DashAnimeXL V1:
import torch
from diffusers import (
StableDiffusionXLPipeline,
EulerAncestralDiscreteScheduler,
AutoencoderKL
)
# Load VAE component
vae = AutoencoderKL.from_pretrained(
"madebyollin/sdxl-vae-fp16-fix",
torch_dtype=torch.bfloat16
)
# Configure the pipeline
pipe = StableDiffusionXLPipeline.from_pretrained(
"dashtoon/DashAnimeXL-V1",
vae=vae,
torch_dtype=torch.bfloat16,
use_safetensors=True,
)
pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
if torch.cuda.is_available():
pipe.to('cuda')
# Define prompts and generate image
prompt = "anime illustration, An ink painting with a superhot, pop art style, featuring vibrant splashes and gradient patterns merging with random signals and noise. A zoomed-in panda wearing glasses, appearing to look directly at the viewer. The piece is bathed in warm, volumetric lighting against a clear dusk sky background. The reflection in the panda's sunglasses reveals nuclear clouds, adding an element of surrealism."
negative_prompt = "nsfw, low quality, worst quality, very displeasing, 3d, watermark, signature, ugly, poorly drawn"
image = pipe(
prompt,
negative_prompt=negative_prompt,
width=1024,
height=1024,
guidance_scale=7,
num_inference_steps=20
).images[0]
- Downloads last month
- 114
Inference Providers
NEW
This model is not currently available via any of the supported third-party Inference Providers, and
the model is not deployed on the HF Inference API.