Views
No views yet
galaxsd_final.safetensors contains the fine-tuned Stable Diffusion weights for the GalaxySD model. To use this model in your own pipeline:diffusers, transformers, accelerate, and safetensors installed:pip install diffusers transformers accelerate safetensors1from diffusers import StableDiffusionPipeline
2import torch
3
4pipe = StableDiffusionPipeline.from_single_file(
5 "galaxsd_final.safetensors",
6 torch_dtype=torch.float16
7).to("cuda")
8
9prompt = "sdss, spiral galaxy, loosely wound spiral arms, 2 spiral arms"
10image = pipe(prompt).images[0]
11image.save("output.png")@article{Ma_2026,
doi = {10.3847/1538-4365/ae1f10},
url = {https://doi.org/10.3847/1538-4365/ae1f10},
year = {2026},
month = {jan},
publisher = {The American Astronomical Society},
volume = {282},
number = {2},
pages = {25},
author = {Ma, Chenrui and Sun, Zechang and Jing, Tao and Cai, Zheng and Ting, Yuan-Sen and Huang, Song and Li, Mingyu},
title = {Can AI Dream of Unseen Galaxies? Conditional Diffusion Model for Galaxy Morphology Augmentation},
journal = {The Astrophysical Journal Supplement Series},
}