Text-to-Image
Diffusers
English
360
360°
360-degree
360-image
equirectangular
equirectangular-projection
image-generation
Instructions to use ProGamerGov/qwen-360-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ProGamerGov/qwen-360-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ProGamerGov/qwen-360-diffusion", 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
Special Files where to place?
#7
by MarioLuna - opened
Hi
Do the following files need to be placed in a folder: create_360_sweep_frames.py - run_qwen_image_int8.py - run_qwen_image_nf4.py?
@MarioLuna Those files are just examples of ways that you can run the model with diffusers. They don't need to be placed anywhere specific, but you do need to ensure the path to the models in the script matches where you put them.
This model doesn't require any special code to run, so you can run the model with any Qwen-Image + LoRA script you want. Just make sure the paths are correct.