CoolFace
Modelpublic

tensorart/stable-diffusion-3.5-large-TurboX

sourceHugging Faceotherupdated 1y agoView on Hugging Face
68likes206downloads
Model Card

TensorArt-TurboX-SD3.5Large

<div align="center"> <img src="ckptad.webp" alt="ComfyUItemppsqad00205_" width="400"/> </div>

Model Description

TensorArt-TurboX-SD3.5Large is a highly optimized variant of Stable Diffusion 3.5 Large, achieving 6x faster generation speed with minimal quality loss. It surpasses the official Stable Diffusion 3.5 Large Turbo in image detail, diversity, richness, and realism.

The model is available in both LoRA and checkpoint (ckpt) formats(chosen one of them, don't use them at same time), ensuring compatibility with most community models. This allows seamless integration into various workflows, accelerating open-source AI development.

Key Features

  • β€”πŸš€ 6x Speed Boost: Generates images significantly faster than the original SD3.5 Large.
  • β€”πŸŽ¨ Superior Quality: Outperforms stabilityai/stable-diffusion-3.5-large-turbo in detail, diversity, and realism.
  • β€”πŸ”„ Versatile Compatibility: Works with both realistic and anime-style models.
  • β€”βš‘ Optimized for Efficiency: Suitable for both high-end and mid-range GPUs.

Recommended Settings

For optimal results, we recommend using:

  • β€”Sampler: Euler
  • β€”Scheduler: Simple
  • β€”Sampling Steps: 8
  • β€”CFG Scale: 1.0 - 1.5 (Note: CFG β‰  1 will double generation time)
  • β€”Shift: 5 (Most important!!!)
  • β€”LoRA Strength: 1.0 (if using LoRA version)

Example Comparisons

TensorArt-TurboX-SD3.5Large vs. Official Models

Here are some sample outputs comparing TensorArt-TurboX-SD3.5Large (8 steps, CFG=1, Simple scheduler) with official stable-diffusion-3.5-large-turbo when using the same time. The contrast workflow are here: constrast_normal_TurboX, contrast_TurboX_turbo:

promptTensorart turboX cfg=1 8stepsOfficial turbo cfg=1.5 4steps
scheduler=simplescheduler=normal
a high school girl is standing in the ground,full body, wearing a sport clothes, holding a tennis[image][image]
Cinematic close-up on Fan Bingbing's regal features as she embodies ancient Egyptian queen Cleopatra. Golden light bathes her porcelain skin, highlighting the delicate contours of her face and the piercing gaze that commands attention. Rich fabrics drape elegantly across her statuesque form, with a subtle emphasis on the ornate jewelry and intricately designed headdress that crowns her majestic presence[image][image]
A blonde woman in a short dress stands on a balcony, teasing smile and biting her lip. Twilight casts a warm glow, (anime-style:1.2). Behind her, a jungle teems with life, tropical storm clouds gathering, lightning flickering in the distance.[image][image]

Example Output

Using ckpt:

python
    import torch
    from diffusers import StableDiffusion3Pipeline

    repo = "tensorart/stable-diffusion-3.5-large-TurboX"


    pipe = StableDiffusion3Pipeline.from_pretrained(repo, torch_dtype=torch.float16)
                                                    
    pipe = pipe.to("cuda")


    generator = torch.Generator(device="cuda").manual_seed(1)

    image = pipe(
    "A beautiful bald girl with silver and white futuristic metal face jewelry, her full body made of intricately carved liquid glass in the style of Tadashi, the complexity master of cyberpunk, in the style of James Jean and Peter Mohrbacher. This concept design is trending on Artstation, with sharp focus, studio-quality photography, and highly detailed, intricate details.",
    num_inference_steps=8,
    guidance_scale=1.5,
    height=1024,
    width=768,
    generator=generator
    ).images[0]

    image.save("./test2-3.webp")

Using lora:

python
   import torch
   from diffusers import StableDiffusion3Pipeline, FlowMatchEulerDiscreteScheduler
   import numpy as np
   from safetensors.torch import load_file
   from huggingface_hub import hf_hub_download

   repo = "tensorart/stable-diffusion-3.5-large-TurboX"
   ckpt = "Tensorart_TurboX_sd3.5L_8steps.safetensors"

   pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3.5-large", torch_dtype=torch.float16,)
                                                   
   pipe = pipe.to("cuda")
   pipe.load_lora_weights(hf_hub_download(repo, ckpt))
   pipe.fuse_lora()
   
   pipe.scheduler = FlowMatchEulerDiscreteScheduler.from_pretrained(repo, subfolder="scheduler", shift=5)

   generator = torch.Generator(device="cuda").manual_seed(1)
   image = pipe(
      "A beautiful bald girl with silver and white futuristic metal face jewelry, her full body made of intricately carved liquid glass in the style of Tadashi, the complexity master of cyberpunk, in the style of James Jean and Peter Mohrbacher. This concept design is trending on Artstation, with sharp focus, studio-quality photography, and highly detailed, intricate details.",
      num_inference_steps=8,
      guidance_scale=1.5,
      height=1024,
      width=768,
      generator=generator
   ).images[0]
   image.save("./test1.webp")

Community Model Integration

TensorArt-TurboX-SD3.5Large seamlessly integrates with various community models:

  • β€”βœ… Photorealistic Models: Enhances realism while maintaining the original style.
  • β€”βœ… Anime-Style Models: Preserves artistic style while boosting generation speed.
  • β€”βœ… LoRA Models: Works with style, character, and concept LoRAs.

Limitations

While highly optimized, this model may not be suitable for:

  1. 1.Rendering precise English text in images.
  2. 2.Generating anatomically perfect hands.
  3. 3.Experiments with non-recommended samplers or schedulers (Best performance with Euler + Simple scheduler).

Model Links

Contact

  • β€”Website: https://tensor.art https://tusiart.com
  • β€”Developed by: TensorArt