Instructions to use Ocean3/NuElement with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Ocean3/NuElement with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Ocean3/NuElement", 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 Settings
- Draw Things
- DiffusionBee
File size: 338 Bytes
1bba1c1 | 1 2 3 4 5 6 7 8 | "vae-ft-ema-560000-ema.vae" Recommended - bright vivid/bold colors Use any vae option you find best! - Note: model names containing "-bv" or "-bakedVAE" include VAE files baked-in making the use of these files redundant. Of course, you can also choose to use your own variation(s) with the base models or otherwise. These are optional. |