Sri2901/01_Studio_v1
031
01Studiov1
Model trained with AI Toolkit by Ostris
<Gallery />
Trigger words
You should use studi@ to trigger the image generation.
Download model and use it with ComfyUI, AUTOMATIC1111, SD.Next, Invoke AI, etc.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('username/01_Studio_v1', weight_name='01_Studio_v1.safetensors')
image = pipeline('studi@ A photo-realistic shoot from a profile camera angle about a woman wearing a blue and white floral print dress with puff sleeves and a tie waist, standing in profile against a plain grey background. the image also shows a woman standing in the middle of the frame, facing away from the camera, wearing a white dress with blue floral patterns and a ruffled hem. on the right side of the image, a woman appears to be in her mid-twenties, with long black hair styled in loose waves, wearing earrings and a bracelet on her wrist. her expression is neutral, and she is standing with her arms at her sides.').images[0]
image.save("my_image.png")For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
