Diffusers
English
stable-diffusion
stable-diffusion-diffusers
inpainting
art
artistic
anime
absolute-realism
Instructions to use diffusers/tools with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use diffusers/tools with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("diffusers/tools", 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
File size: 937 Bytes
7e4953f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | openai/whisper-large-v3 openai/whisper-large-v2 brunoqgalvao/whisper-small-pt-br openai/whisper-base.en openai/whisper-tiny.en openai/whisper-small distil-whisper/distil-medium.en openai/whisper-base openai/whisper-tiny openai/whisper-small.en openai/whisper-medium openai/whisper-large MU-NLPC/whisper-small-audio-captioning distil-whisper/distil-large-v2 hf-internal-testing/tiny-random-WhisperForConditionalGeneration openai/whisper-medium.en tarteel-ai/whisper-base-ar-quran distil-whisper/distil-small.en sawradip/bengali-whisper-medium-tugstugi vasista22/whisper-gujarati-medium vumichien/whisper-medium-jp sanchit-gandhi/whisper-medium-fleurs-lang-id vasista22/whisper-hindi-large-v2 simonl0909/whisper-large-v2-cantonese bofenghuang/whisper-small-cv11-french shhossain/whisper-tiny-bn-emo Subhaka/whisper-small-Sinhala-Fine_Tune biodatlab/whisper-th-medium-combined primeline/whisper-large-v3-german UnlikelyAI/whisper-tiny-demo |