Views
No views yet
| Metric | Value |
|---|---|
| MSE loss | 0.1678 |
| Resolution | 192x192 |
| UNet parameters | 323M |
| Training steps | 500 |
| Base model | segmind/tiny-sd |
1from diffusers import StableDiffusionPipeline
2import torch
3
4pipe = StableDiffusionPipeline.from_pretrained(
5 "Catniti/catrex-1.0-image", torch_dtype=torch.float16, safety_checker=None
6).to("cuda")
7
8image = pipe(
9 "a photo of a young woman with long blonde hair, smiling",
10 num_inference_steps=30,
11 guidance_scale=7.5,
12 height=192, width=192,
13).images[0]
14image.save("face.png")a photo of an older man with a grey beard and glasses