File size: 2,670 Bytes
230fe1b 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 6f5171e 75e7a10 75d8773 75e7a10 6f5171e 75e7a10 75d8773 e150066 0026599 230fe1b 75e7a10 b1b3027 8652f46 230fe1b 8652f46 5109f91 8652f46 5109f91 8652f46 089a403 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
---
pipeline_tag: text-to-image
widget:
- text: >-
a wolf hollowing at the moon
url: wolf.png
- text: >-
a baseball bat on the beach
output:
url: baseball.png
- text: >-
space
output:
url: space.png
- text: >-
green dragon, flying, sky, yellow eyes, teeth, wings up, tail, horns, solo, clouds,
url: dragon.png
- text: >-
(impressionistic realism by csybgh), a 50 something male, working in banking, very short dyed dark curly balding hair, Afro-Asiatic ancestry, talks a lot but listens poorly, stuck in the past, wearing a suit, he has a certain charm, bronze skintone, sitting in a bar at night, he is smoking and feeling cool, drunk on plum wine, masterpiece, 8k, hyper detailed, smokey ambiance, perfect hands AND fingers
output:
url: Afro-Asiatic.png
- text: >-
a cat wearing sunglasses in the summer
output:
url: sunglasses.png
- text: >-
close up portrait of an old woman
output:
url: oldwoman.png
- text: >-
fishing boat, bioluminescent sky
output:
url: boat.png
license: apache-2.0
---
<Gallery />
# 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
```python
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/ ]
|