Downloads · 30 days
29
0% of all-time downloads
markury/surrealidescent
surrealidescent is a text-to-image model from markury. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as other.
This is a standard PEFT LoRA derived from black-forest-labs/FLUX.1-dev.
Downloads · 30 days
29
0% of all-time downloads
All-time downloads
6.7K
Public
Repo size
2.8 GB
Likes
3
Public
Click a slice to open those files.
.safetensors52.4 MB · 82%
From the Hugging Face model README
This is a standard PEFT LoRA derived from black-forest-labs/FLUX.1-dev.
The main validation prompt used during training was:
A surreal photo of an astronaut holding a white cat in a vibrant dreamscape filled with hibiscus flowers
3.00.020None421024x1024Note: The validation settings are not necessarily the same as the training settings.
You can find some example images in the following gallery:
<Gallery />The text encoder was not trained. You may reuse the base model text encoder for inference.
import torch
from diffusers import DiffusionPipeline
model_id = 'black-forest-labs/FLUX.1-dev'
adapter_id = 'markury/surrealidescent'
pipeline = DiffusionPipeline.from_pretrained(model_id)
pipeline.load_lora_weights(adapter_id)
prompt = "A surreal photo of an astronaut holding a white cat in a vibrant dreamscape filled with hibiscus flowers"
pipeline.to('cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu')
image = pipeline(
prompt=prompt,
num_inference_steps=20,
generator=torch.Generator(device='cuda' if torch.cuda.is_available() else 'mps' if torch.backends.mps.is_available() else 'cpu').manual_seed(1641421826),
width=1024,
height=1024,
guidance_scale=3.0,
).images[0]
image.save("output.png", format="PNG")