Instructions to use RED-AIGC/TDD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use RED-AIGC/TDD with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("RED-AIGC/TDD", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
In Comfyui,need any special settings?
#3
by gwen0807 - opened
If in Comfyui, is it used directly as a regular Lora? Are there any special requirements for sampling methods and cfg?
yes,use it as a regular Lora, for sampling methods , just try dpm++ scheduler or our tdd scheduler
Is the TDD scheduler integrated into Comfyui or it require development of nodes?