by prompthero
Open source · 6k downloads · 3201 likes
OpenJourney is an AI model specialized in generating artistic images, inspired by the visual style of MidJourney. Fine-tuned from Stable Diffusion, it excels at creating aesthetic and stylized works, such as illustrations, paintings, or various artistic concepts. To use it, simply add the phrase "mdjrny-v4 style" at the beginning of your prompts, allowing it to replicate MidJourney-like atmospheres and compositions. This model is particularly well-suited for artists, designers, and content creators seeking to produce unique and striking visuals. Its strength lies in transforming detailed text descriptions into coherent, high-quality images while offering great flexibility in use.
Include 'mdjrny-v4 style' in prompt. Here you'll find hundreds of Openjourney prompts
(Same parameters, just added "mdjrny-v4 style" at the beginning):

This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion.
You can also export the model to ONNX, MPS and/or FLAX/JAX.
from diffusers import StableDiffusionPipeline
import torch
model_id = "prompthero/openjourney"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "retro serie of different cars with different colors and shapes, mdjrny-v4 style"
image = pipe(prompt).images[0]
image.save("./retro_cars.png")