stable-diffusion text-to-image

Galactic Diffusion

This is the fine-tuned Stable Diffusion model trained on images from the <b>entergalactic</b> on Netflix.. No tokens is needed.

Diffusers

This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.

You can also export the model to ONNX, MPS and/or FLAX/JAX.

#!pip install diffusers transformers scipy torch
from diffusers import StableDiffusionPipeline
import torch

model_id = "AlexZheng/galactic-diffusion-v1.0"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "a beautiful young female with long dark hair, clothed in full dress"
image = pipe(prompt).images[0]
image.save("./samples/1.png")

Sample images

"a beautiful young female with long dark hair, clothed in full dress"

output Samples v3

"a strong handsome young male clothed in metal armors"

output Samples v3

"a British shorthair cat sitting on the floor"

output Samples v3

"a golden retriever running in the park"

output Samples v3

"a blue shining Porsche sports car"

output Samples v3

"a modern concept house, two stories, no people"

output Samples v3

"a warm and sweet living room, a TV, no people"

output Samples v3

"a beautiful city night scene, no people"

output Samples v3