Text-to-Image
Diffusers
TensorBoard
Safetensors
StableDiffusionPipeline
dreambooth
diffusers-training
stable-diffusion
stable-diffusion-diffusers
Instructions to use NadaGh/working with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use NadaGh/working with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("NadaGh/working", dtype=torch.bfloat16, device_map="cuda") prompt = "tst chair" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| import argparse | |
| import sys | |
| sys.path.append(".") | |
| from base_classes import TextToImageBenchmark, TurboTextToImageBenchmark # noqa: E402 | |
| ALL_T2I_CKPTS = [ | |
| "runwayml/stable-diffusion-v1-5", | |
| "segmind/SSD-1B", | |
| "stabilityai/stable-diffusion-xl-base-1.0", | |
| "kandinsky-community/kandinsky-2-2-decoder", | |
| "warp-ai/wuerstchen", | |
| "stabilityai/sdxl-turbo", | |
| ] | |
| if __name__ == "__main__": | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument( | |
| "--ckpt", | |
| type=str, | |
| default="runwayml/stable-diffusion-v1-5", | |
| choices=ALL_T2I_CKPTS, | |
| ) | |
| parser.add_argument("--batch_size", type=int, default=1) | |
| parser.add_argument("--num_inference_steps", type=int, default=50) | |
| parser.add_argument("--model_cpu_offload", action="store_true") | |
| parser.add_argument("--run_compile", action="store_true") | |
| args = parser.parse_args() | |
| benchmark_cls = None | |
| if "turbo" in args.ckpt: | |
| benchmark_cls = TurboTextToImageBenchmark | |
| else: | |
| benchmark_cls = TextToImageBenchmark | |
| benchmark_pipe = benchmark_cls(args) | |
| benchmark_pipe.benchmark(args) | |