--- language: - en tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - art - artistic - diffusers - midjourney - artificial - artificial-journey - journey - portrait - art - diffusion - photorealistic inference: true license: creativeml-openrail-m --- # ARTificialJourney-1.0 768X768 This is an AI model trained on ~100 hand picked 768X768 images targeted to get the best close up portrait pictures, as well as amazing looking landscapes. This model does not handle full-body portraits well due to being trained on more close up images, but it will be improved in the next update of this model. Please use the keywords **"artificial-journey style"** before or after the prompt. Also be sure to add more detailed text to the prompt to get the best results. Resolutions 1024x768px, 768x1024px, and 768x768 work best for this model. *.safetensors file was generated using the new sd-webui-model-converter.* # Examples (As is images, no upsclaing or face improvements were used) ![img](https://huggingface.co/Kaludi/ARTificialJourney-v1.0-768/resolve/main/Images1.jpg) **Have fun generating!** ### CKPT & Safetensors Download [Download ARTificialJourneyV1-768px.ckpt) (2.9GB)](https://huggingface.co/Kaludi/ARTificialJourney-v1.0-768/blob/main/ARTificialJourneyV1-768px.ckpt) [Download ARTificialJourneyV1-768px.safetensors) (2.9GB)](https://huggingface.co/Kaludi/ARTificialJourney-v1.0-768/blob/main/ARTificialJourneyV1-768px.safetensors) ### 🧨 Diffusers This model can be used just like any other Stable Diffusion model. For more information, please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion). ```python from diffusers import StableDiffusionPipeline, DPMSolverMultistepScheduler import torch prompt = ( "artificial-journey style portrait of male dark magician, d & d, dark eyeliner, intricate, elegant, highly detailed, digital painting, artstation, concept art, matte, sharp focus, illustration") model_id = "Kaludi/ARTificialJourney-v1.0-768" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config) pipe = pipe.to("cuda") image = pipe(prompt, num_inference_steps=30).images[0] image.save("./result.jpg") ``` ![img](https://huggingface.co/Kaludi/ARTificialJourney-v1.0-768/resolve/main/Images2.jpg) ## License This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies: 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)