Galactic Diffusion
This is the fine-tuned Stable Diffusion model trained on images from the entergalactic 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.
1#!pip install diffusers transformers scipy torch
2from diffusers import StableDiffusionPipeline
3import torch
4
5model_id = "AlexZheng/galactic-diffusion-v1.0"
6pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
7pipe = pipe.to("cuda")
8
9prompt = "a beautiful young female with long dark hair, clothed in full dress"
10image = pipe(prompt).images[0]
11image.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