--- license: other --- # Dreamlike Photoreal 1.0 is a photorealistic Stable Diffusion 1.5 model fine tuned on high quality photos, made by [dreamlike.art](https://dreamlike.art/). Use the same prompts as you would do for photorealistic SD 1.5 gens. You can also use danbooru style tags for characters (1girl, brown hair, etc.). ### CompVis [dreamlike-photoreal-1.0.ckpt (2GB)](https://huggingface.co/dreamlike-art/dreamlike-photoreal-1.0/resolve/main/dreamlike-photoreal-1.0.ckpt) ### Gradio We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Dreamlike Photoreal 1.0: [Open in Spaces](https://huggingface.co/spaces/dreamlike-art/dreamlike-photoreal-1.0-demo) ### 🧨 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 import torch model_id = "dreamlike-art/dreamlike-photoreal-1.0" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to("cuda") prompt = "pikachu" image = pipe(prompt).images[0] image.save("./result.jpg") ``` # License This model is licesed under a **modified** CreativeML OpenRAIL-M license. - **You can't host the model or it's derivatives on websites/apps, from which you earn, or plan to earn revenue. If you want to, please email us at contact@dreamlike.art** - **You are free to host the model or it's derivatives on non-commercial websites/apps. Please state the full model name (Dreamlike Photoreal) and include a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-photoreal-1.0)** - **You are free to use the model or it's derivatives for commercial purposes in teams of 3 or less** - You can't use the model to deliberately produce nor share illegal or harmful outputs or content - 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 - You may re-distribute the weights. 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 **modified** CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here: https://huggingface.co/dreamlike-art/dreamlike-photoreal-1.0/blob/main/LICENSE.md