Instructions to use CosmosDream/GalaxySD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use CosmosDream/GalaxySD with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("CosmosDream/GalaxySD", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
#1
by ChenruiMa - opened
README.md
CHANGED
|
@@ -11,4 +11,4 @@ This is a text2galaxy tool, generating galaxy images given galaxy morphological
|
|
| 11 |
|
| 12 |
Visit the ๐ [HOMEPAGE](https://galaxysd-webpage.streamlit.app/) to view the detailed introduction of our project.
|
| 13 |
|
| 14 |
-
Our model pipeline ๐ [GalaxySD Repo](https://github.com/chenruiRae/GalaxySD)
|
|
|
|
| 11 |
|
| 12 |
Visit the ๐ [HOMEPAGE](https://galaxysd-webpage.streamlit.app/) to view the detailed introduction of our project.
|
| 13 |
|
| 14 |
+
Our model pipeline ๐ [GalaxySD Repo](https://github.com/chenruiRae/GalaxySD).
|