Instructions to use cosmicman/CosmicMan-SDXL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use cosmicman/CosmicMan-SDXL with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("cosmicman/CosmicMan-SDXL", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,10 +40,10 @@ unet_path = "cosmicman/CosmicMan-SDXL"
|
|
| 40 |
|
| 41 |
# Load model.
|
| 42 |
unet = UNet2DConditionModel.from_pretrained(unet_path, torch_dtype=torch.float16)
|
| 43 |
-
pipe = StableDiffusionXLPipeline.from_pretrained(base_path, unet=unet, torch_dtype=torch.float16, variant="fp16").to("cuda")
|
| 44 |
pipe.scheduler = EulerDiscreteScheduler.from_pretrained(base_path, subfolder="scheduler", torch_dtype=torch.float16)
|
| 45 |
|
| 46 |
-
refiner = StableDiffusionXLImg2ImgPipeline.from_pretrained(refiner_path,torch_dtype=torch.float16, use_safetensors=True).to("cuda") # we found use base_path instead of refiner_path may get a better performance
|
| 47 |
|
| 48 |
# Generate image.
|
| 49 |
positive_prompt = "A fit Caucasian elderly woman, her wavy white hair above shoulders, wears a pink floral cotton long-sleeve shirt and a cotton hat against a natural landscape in an upper body shot"
|
|
|
|
| 40 |
|
| 41 |
# Load model.
|
| 42 |
unet = UNet2DConditionModel.from_pretrained(unet_path, torch_dtype=torch.float16)
|
| 43 |
+
pipe = StableDiffusionXLPipeline.from_pretrained(base_path, unet=unet, torch_dtype=torch.float16, variant="fp16", use_safetensors=True).to("cuda")
|
| 44 |
pipe.scheduler = EulerDiscreteScheduler.from_pretrained(base_path, subfolder="scheduler", torch_dtype=torch.float16)
|
| 45 |
|
| 46 |
+
refiner = StableDiffusionXLImg2ImgPipeline.from_pretrained(refiner_path,torch_dtype=torch.float16, variant="fp16", use_safetensors=True).to("cuda") # we found use base_path instead of refiner_path may get a better performance
|
| 47 |
|
| 48 |
# Generate image.
|
| 49 |
positive_prompt = "A fit Caucasian elderly woman, her wavy white hair above shoulders, wears a pink floral cotton long-sleeve shirt and a cotton hat against a natural landscape in an upper body shot"
|