File size: 1,170 Bytes
e4b6e3b b69da0c e4b6e3b b69da0c e4b6e3b b69da0c e4b6e3b 64ea121 b69da0c 23b0a75 64ea121 b69da0c 23b0a75 64ea121 b69da0c 64ea121 b69da0c |
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 32 33 34 35 36 37 38 39 40 41 |
---
language: en
tags:
- stable-diffusion-xl
- text-to-image
- diffusers
license: creativeml-openrail-m
datasets:
- your-dataset-name
metrics:
- your-metric
---
# MaxCushion - SDXL Fine-tuned Model
This is a fine-tuned Stable Diffusion XL (SDXL) model based on [FLUX.1-dev](https://huggingface.co/black-forest-labs/FLUX.1-dev). It's designed to generate high-quality images with a focus on **[specific theme or style your model specializes in]**.
## Model Details
- **Base Model:** [FLUX.1-dev](https://huggingface.co/black-forest-labs/FLUX.1-dev)
- **Type:** Stable Diffusion XL (SDXL)
- **Language(s):** English
- **License:** [CreativeML Open RAIL-M](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
## Usage
This model can be used with the `diffusers` library. Here's a basic example:
```python
from diffusers import StableDiffusionXLPipeline
import torch
model_id = "colt12/maxcushion"
pipe = StableDiffusionXLPipeline.from_pretrained(
model_id, torch_dtype=torch.float16, use_safetensors=True, variant="fp16"
)
pipe = pipe.to("cuda")
prompt = "Your prompt here"
image = pipe(prompt).images[0]
image.save("generated_image.png") |