OpenVision (v1): Midjourney Aesthetic for All Your Images
OpenVision is a style enhancement of ProteusV0.4 that seamlessly incorporates the captivating Midjourney aesthetic into every image you generate.
OpenVision excels at that unspeakable style midjourney is renowed for, while still retaining a good range and crisp details - especially on portraits!
By baking the Midjourney aesthetic directly into the model, OpenVision eliminates the need for manual adjustments or post-processing.
All synthetic images were generated using the Bittensor Network. Bittensor will decentralise AI - and building SOTA open source models is key - OpenVision is a small step in our grand journey
Optimal Settings
- CFG: 1.5 - 2
- Sampler: Euler Ancestral
- Steps: 30 - 40
- Resolution: 1280x1280 (Aesthetic++) or 1024x1024 (Fidelity++)
Use it with 🧨 diffusers
import torch
from diffusers import (
StableDiffusionXLPipeline,
AutoencoderKL
)
# Load VAE component
vae = AutoencoderKL.from_pretrained(
"madebyollin/sdxl-vae-fp16-fix",
torch_dtype=torch.float16
)
# Configure the pipeline
pipe = StableDiffusionXLPipeline.from_pretrained(
"Corcelio/openvision",
vae=vae,
torch_dtype=torch.float16
)
pipe.to('cuda')
# Define prompts and generate image
prompt = "a cat wearing sunglasses in the summer"
negative_prompt = ""
image = pipe(
prompt,
negative_prompt=negative_prompt,
width=1280,
height=1280,
guidance_scale=1.5,
num_inference_steps=30
).images[0]
Credits
Made by Corcel [ https://corcel.io/ ]
- Downloads last month
- 14,284