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.
#!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"
"a strong handsome young male clothed in metal armors"
"a British shorthair cat sitting on the floor"
"a golden retriever running in the park"
"a blue shining Porsche sports car"
"a modern concept house, two stories, no people"
"a warm and sweet living room, a TV, no people"
"a beautiful city night scene, no people"
- Downloads last month
- 3
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.