Instructions to use noema-art/petravoiceflux2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use noema-art/petravoiceflux2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("noema-art/petravoiceflux2") prompt = "This is a digital illustration with a surreal, ethereal quality, characterized by soft, smooth textures and pastel colors, exhibiting the artistic style of petravoice. The central subject is a young woman with large, expressive eyes that dominate the image. Her eyes are a deep, dark blue, framed by long, thick lashes, and her gaze is intense and slightly melancholic. Her petravoice-inspired pale skin and a delicate, heart-shaped face with a small, slightly downturned mouth is intriguing. Her hair is long and black, cascading around her face and blending seamlessly into the water, which is a gradient of soft pink, blue, and purple hues. The water appears to be rippling, creating gentle waves that reflect the petravoice textures and add to the dreamlike atmosphere. The background is a gradient of blue, transitioning from a deep, almost navy blue at the top to a lighter, sky-like blue at the bottom, contributing to the serene and otherworldly feel of the petravoice-influenced image. The overall style is reminiscent of modern digital art, with a focus on smooth, gradient shading and a minimalistic approach to detail. The petravoice style image evokes a sense of tranquility and mystery, with the young woman's face emerging from the water like a ghostly apparition." image = pipe(prompt).images[0] - Inference
- Notebooks
- Google Colab
- Kaggle
Ctrl+K